Skip to content

Commit

Permalink
fix: remove @rollup/plugin-commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
cycjimmy committed Jun 21, 2022
1 parent 4ca830b commit 15d5cfe
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 136 deletions.
133 changes: 11 additions & 122 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 11 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,27 @@
"access": "public"
},
"dependencies": {
"@cycjimmy/awesome-js-funcs": "^4.0.7",
"@cycjimmy/sass-lib": "^2.0.0"
"@cycjimmy/awesome-js-funcs": "^4.0.8",
"@cycjimmy/sass-lib": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-env": "^7.18.2",
"@cycjimmy/config-lib": "^3.2.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"fs-extra": "^10.0.1",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"node-sass": "^7.0.1",
"rollup": "^2.70.1",
"rollup": "^2.75.7",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2",
Expand Down
2 changes: 0 additions & 2 deletions rollup/rollup.common.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import eslint from '@rollup/plugin-eslint';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import { babel } from '@rollup/plugin-babel';
import postcss from 'rollup-plugin-postcss';
import autoprefixer from 'autoprefixer';
Expand Down Expand Up @@ -41,7 +40,6 @@ export const plugins = [
}),
resolve(),
babel({ babelHelpers: 'bundled' }),
commonjs(),
];

export const terserPlugins = IS_PRODUCTION && terser(terserOption);

0 comments on commit 15d5cfe

Please sign in to comment.