Skip to content

Commit

Permalink
chore(deps): update to rollup v3
Browse files Browse the repository at this point in the history
  • Loading branch information
geotrev committed Jul 16, 2023
1 parent 2b0a3af commit a5876ca
Show file tree
Hide file tree
Showing 11 changed files with 106 additions and 129 deletions.
2 changes: 1 addition & 1 deletion config/rollup.base.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from "path"
import { terser } from "rollup-plugin-terser"
import terser from "@rollup/plugin-terser"
import babel from "@rollup/plugin-babel"
import commonjs from "@rollup/plugin-commonjs"
import replace from "@rollup/plugin-replace"
Expand Down
213 changes: 93 additions & 120 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
"@commitlint/config-conventional": "^17.6.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"babel-jest": "^29.5.0",
"conventional-changelog-cli": "^3.0.0",
"dotenv-cli": "^7.2.1",
Expand All @@ -45,9 +46,8 @@
"lint-staged": "^13.2.2",
"paopu": "^0.1.2",
"prettier": "^3.0.0",
"rollup": "^2.79.1",
"rollup": "^3.26.2",
"rollup-plugin-dev": "^2.0.4",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.5.1",
"yargs": "^17.7.2"
},
Expand Down
1 change: 1 addition & 0 deletions packages/element/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"browser": "dist/index.min.js",
"type": "module",
"scripts": {
"build": "rollup -c"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/element/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import alias from "@rollup/plugin-alias"
import path from "path"
import getBaseConfig from "../../config/rollup.base.config"
import getBaseConfig from "../../config/rollup.base.config.js"

const { baseConfig, terserPlugin, replacePlugin, Environments, plugins } =
getBaseConfig(process.cwd(), "Bulba")
Expand Down
1 change: 1 addition & 0 deletions packages/jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"browser": "dist/index.min.js",
"type": "module",
"scripts": {
"build": "rollup -c"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/jsx/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import getBaseConfig from "../../config/rollup.base.config"
import getBaseConfig from "../../config/rollup.base.config.js"

const { baseConfig } = getBaseConfig(process.cwd(), "BulbaJsx")

Expand Down
Loading

0 comments on commit a5876ca

Please sign in to comment.