Skip to content

Commit

Permalink
chore(deps-dev): use updated rollup plugins (speced#3392)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi authored Mar 22, 2021
1 parent 22bd278 commit aef9640
Show file tree
Hide file tree
Showing 4 changed files with 161 additions and 91 deletions.
4 changes: 2 additions & 2 deletions js/deps/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// rollup.config.js
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';

const template = {
output: {
Expand Down
240 changes: 155 additions & 85 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"Robin Berjon"
],
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/marked": "^2.0.0",
"@types/pluralize": "0.0.29",
"boxen": "^5.0.0",
Expand Down Expand Up @@ -52,9 +55,6 @@
"prettier": "^2.2.1",
"prompt": "^1.1.0",
"rollup": "^2.41.2",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2",
"typescript": "^4.2.3",
Expand Down
2 changes: 1 addition & 1 deletion tools/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const colors = require("colors");
const { promises: fsp } = require("fs");
const path = require("path");
const { rollup } = require("rollup");
const alias = require("rollup-plugin-alias");
const alias = require("@rollup/plugin-alias");
const CleanCSS = require("clean-css");

colors.setTheme({
Expand Down

0 comments on commit aef9640

Please sign in to comment.