Skip to content
Snippets Groups Projects
Commit 1b2b4a14 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Update npm deps

parent 459833ae
No related branches found
No related tags found
No related merge requests found
...@@ -7,22 +7,22 @@ ...@@ -7,22 +7,22 @@
"chai": "^4.2.0", "chai": "^4.2.0",
"glob": "^7.1.4", "glob": "^7.1.4",
"i18next-scanner": "^2.10.2", "i18next-scanner": "^2.10.2",
"karma": "^4.2.0", "karma": "^5.1.0",
"karma-chrome-launcher": "^3.0.0", "karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0", "karma-mocha": "^2.0.1",
"mocha": "^6.2.0", "mocha": "^8.0.1",
"node-sass": "^4.12.0", "node-sass": "^4.12.0",
"puppeteer": "^1.15.0", "puppeteer": "^1.15.0",
"rollup": "^1.11.3", "rollup": "^2.20.0",
"rollup-plugin-commonjs": "^10.0.2", "@rollup/plugin-commonjs": "^13.0.0",
"rollup-plugin-consts": "^1.0.1", "rollup-plugin-consts": "^1.0.1",
"rollup-plugin-copy": "^3.1.0", "rollup-plugin-copy": "^3.1.0",
"rollup-plugin-delete": "^1.1.0", "rollup-plugin-delete": "^2.0.0",
"rollup-plugin-json": "^4.0.0", "@rollup/plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0", "@rollup/plugin-node-resolve": "^8.0.0",
"rollup-plugin-serve": "^1.0.1", "rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.1", "rollup-plugin-terser": "^6.1.0",
"rollup-plugin-url": "^2.2.2", "@rollup/plugin-url": "^5.0.1",
"vpu-auth": "file:./vendor/auth", "vpu-auth": "file:./vendor/auth",
"vpu-common": "file:./vendor/common" "vpu-common": "file:./vendor/common"
}, },
......
import path from 'path'; import path from 'path';
import glob from 'glob'; import glob from 'glob';
import resolve from 'rollup-plugin-node-resolve'; import resolve from '@rollup/plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs'; import commonjs from '@rollup/plugin-commonjs';
import copy from 'rollup-plugin-copy'; import copy from 'rollup-plugin-copy';
import {terser} from "rollup-plugin-terser"; import {terser} from "rollup-plugin-terser";
import json from 'rollup-plugin-json'; import json from '@rollup/plugin-json';
import serve from 'rollup-plugin-serve'; import serve from 'rollup-plugin-serve';
import urlPlugin from "rollup-plugin-url"; import urlPlugin from "@rollup/plugin-url";
import consts from 'rollup-plugin-consts'; import consts from 'rollup-plugin-consts';
import del from 'rollup-plugin-delete'; import del from 'rollup-plugin-delete';
import chai from 'chai';
const pkg = require('./package.json'); const pkg = require('./package.json');
const build = (typeof process.env.BUILD !== 'undefined') ? process.env.BUILD : 'local'; const build = (typeof process.env.BUILD !== 'undefined') ? process.env.BUILD : 'local';
...@@ -56,10 +55,7 @@ export default { ...@@ -56,10 +55,7 @@ export default {
} }
}), }),
commonjs({ commonjs({
include: 'node_modules/**', include: 'node_modules/**'
namedExports: {
'chai': Object.keys(chai),
}
}), }),
json(), json(),
urlPlugin({ urlPlugin({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment