This repository was archived by the owner on Feb 11, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +46
-51
lines changed Expand file tree Collapse file tree 3 files changed +46
-51
lines changed Original file line number Diff line number Diff line change 5050 "@babel/preset-env" : " ^7.6.3" ,
5151 "@babel/preset-typescript" : " ^7.6.0" ,
5252 "@open-wc/karma-esm" : " ^2.9.0" ,
53+ "@rollup/plugin-commonjs" : " ^11.0.2" ,
54+ "@rollup/plugin-node-resolve" : " ^7.1.1" ,
5355 "@types/chai" : " ^4.2.4" ,
5456 "@types/mocha" : " ^7.0.2" ,
5557 "@typescript-eslint/eslint-plugin" : " ^2.5.0" ,
6971 "raf-stub" : " ^3.0.0" ,
7072 "rollup" : " ^2.3.2" ,
7173 "rollup-plugin-babel" : " ^4.3.3" ,
72- "rollup-plugin-commonjs" : " ^10.1.0" ,
73- "rollup-plugin-node-resolve" : " ^5.2.0" ,
7474 "rollup-plugin-serve" : " ^1.0.1" ,
7575 "rollup-plugin-terser" : " ^5.1.2" ,
7676 "rollup-plugin-typescript2" : " ^0.27.0" ,
Original file line number Diff line number Diff line change @@ -2,8 +2,9 @@ import typescript from 'rollup-plugin-typescript2';
22import { terser } from 'rollup-plugin-terser' ;
33import babel from 'rollup-plugin-babel' ;
44import serve from 'rollup-plugin-serve' ;
5- import commonjs from 'rollup-plugin-commonjs' ;
6- import resolve from 'rollup-plugin-node-resolve' ;
5+ import commonjs from '@rollup/plugin-commonjs' ;
6+ import resolve from '@rollup/plugin-node-resolve' ;
7+
78
89export default [
910 {
@@ -44,11 +45,11 @@ export default [
4445 mangle : true ,
4546 } ) ,
4647 process . env . ROLLUP_WATCH &&
47- serve ( {
48- historyApiFallback : true ,
49- contentBase : '' ,
50- port : 9383 ,
51- } ) ,
48+ serve ( {
49+ historyApiFallback : true ,
50+ contentBase : '' ,
51+ port : 9383 ,
52+ } ) ,
5253 ] ,
5354 } ,
5455] ;
You can’t perform that action at this time.
0 commit comments