Skip to content

Commit

Permalink
vanilla js - no libs, no frameworks (#821)
Browse files Browse the repository at this point in the history
Vanilla js

Co-authored-by: Andrey Kozlov <[email protected]>
  • Loading branch information
AndreyKozlov1984 and Andrey Kozlov authored May 14, 2022
1 parent 480aea9 commit 853af61
Show file tree
Hide file tree
Showing 141 changed files with 22,967 additions and 11,930 deletions.
12 changes: 6 additions & 6 deletions .babelrc.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const path = require('path')

// CAREFUL before adding more presets, next/babel already includes some
// see https://nextjs.org/docs/advanced-features/customizing-babel-config
module.exports = {
ignore: [".yarn", ".pnp.js"],
presets: ["next/babel"],
presets: ['@babel/preset-env'],
plugins: [
["@babel/plugin-transform-react-jsx", {
"runtime": "automatic"
}],
["module-resolver", {
alias: {
public: path.resolve(__dirname, 'public'),
project: process.env.PROJECT_PATH
project: process.env.PROJECT_PATH,
dist: path.resolve(process.env.PROJECT_PATH, 'dist', process.env.PROJECT_NAME || '')
}
}]
]
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.12
v18.1
785 changes: 785 additions & 0 deletions .yarn/releases/yarn-3.2.0.cjs

Large diffs are not rendered by default.

55 changes: 0 additions & 55 deletions .yarn/releases/yarn-sources.cjs

This file was deleted.

4 changes: 2 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
enableProgressBars: false
yarnPath: .yarn/releases/yarn-sources.cjs
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.2.0.cjs
Loading

0 comments on commit 853af61

Please sign in to comment.