File tree 2 files changed +23
-3
lines changed
2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 11
11
"scripts" : {
12
12
"bower" : " bower install" ,
13
13
"build" : " python setup.py js css" ,
14
- "build:webpack" : " webpack --mode development " ,
14
+ "build:webpack" : " webpack --mode production " ,
15
15
"build:watch" : " npm run watch" ,
16
16
"watch" : " onchange 'notebook/static/**/!(*.min).js' 'notebook/static/**/*.less' 'bower.json' -- npm run build"
17
17
},
18
18
"devDependencies" : {
19
+ "@babel/preset-env" : " ^7.15.0" ,
19
20
"@jupyterlab/apputils" : " ^3.1.3" ,
21
+ "babel-loader" : " ^8.2.2" ,
22
+ "babel-polyfill" : " ^6.26.0" ,
20
23
"bower" : " ^1.8.8" ,
21
24
"less" : " ~2" ,
22
25
"onchange" : " ^6.0.0" ,
Original file line number Diff line number Diff line change 1
1
const path = require ( 'path' ) ;
2
2
3
3
module . exports = {
4
- entry : ' @jupyterlab/apputils/lib/sanitizer',
4
+ entry : [ 'babel-polyfill' , ' @jupyterlab/apputils/lib/sanitizer'] ,
5
5
output : {
6
6
filename : 'index.js' ,
7
7
path : path . resolve ( __dirname , 'notebook/static/components/sanitizer' ) ,
8
- libraryTarget : "amd"
8
+ libraryTarget : "amd" ,
9
+ } ,
10
+ devtool : false ,
11
+ optimization : {
12
+ minimize : false
13
+ } ,
14
+ module : {
15
+ rules : [
16
+ {
17
+ test : / \. m ? j s x ? $ / ,
18
+ use : {
19
+ loader : 'babel-loader' ,
20
+ options : {
21
+ presets : [ '@babel/preset-env' ] ,
22
+ }
23
+ }
24
+ }
25
+ ]
9
26
}
10
27
}
You can’t perform that action at this time.
0 commit comments