Skip to content

Commit 2f88cf4

Browse files
committed
Update dependencies
1 parent c70cade commit 2f88cf4

File tree

4 files changed

+1052
-1072
lines changed

4 files changed

+1052
-1072
lines changed

.babelrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

babel.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
presets: ['@babel/preset-env'],
3+
plugins: [
4+
'@babel/plugin-syntax-dynamic-import',
5+
'transform-class-properties',
6+
]
7+
}

package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"start": "webpack-dev-server --mode development --host=0.0.0.0 --port=8080",
99
"clean": "rm -rf lib dist local",
1010
"dist": "webpack --mode production",
11-
"babel": "NODE_ENV=production babel ./src -d lib --ignore 'demo.js'",
11+
"babel": "NODE_ENV=production babel ./src -d lib --ignore src/demo.js",
1212
"build": "npm run clean && npm run babel && npm run dist",
1313
"local": "mkdir -p local && cp -r lib dist package.json local",
1414
"prepublishOnly": "npm run build"
@@ -28,21 +28,22 @@
2828
"author": "Brijesh Bittu <[email protected]> (http://bitwiser.in/)",
2929
"license": "MIT",
3030
"devDependencies": {
31-
"babel-cli": "^6.26.0",
32-
"babel-core": "^6.26.3",
33-
"babel-loader": "^7.1.5",
31+
"@babel/cli": "^7.7.0",
32+
"@babel/core": "^7.7.2",
33+
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
34+
"@babel/preset-env": "^7.7.1",
35+
"babel-loader": "^8.0.6",
3436
"babel-plugin-transform-class-properties": "^6.24.1",
35-
"babel-preset-env": "^1.7.0",
36-
"css-loader": "^1.0.0",
37+
"css-loader": "^3.2.0",
3738
"html-webpack-plugin": "^3.2.0",
38-
"monaco-editor": "0.17.1",
39+
"monaco-editor": "0.18.1",
3940
"monaco-editor-webpack-plugin": "^1.7.0",
40-
"style-loader": "^0.22.1",
41-
"webpack": "^4.16.5",
42-
"webpack-cli": "^3.1.0",
43-
"webpack-dev-server": "^3.1.5"
41+
"style-loader": "^1.0.0",
42+
"webpack": "^4.41.2",
43+
"webpack-cli": "^3.3.10",
44+
"webpack-dev-server": "^3.9.0"
4445
},
4546
"peerDependencies": {
46-
"monaco-editor": "^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0"
47+
"monaco-editor": "^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0"
4748
}
4849
}

0 commit comments

Comments
 (0)