Skip to content

Commit bbfeb03

Browse files
committed
build: bump dev deps
1 parent ab2b1f1 commit bbfeb03

File tree

3 files changed

+338
-470
lines changed

3 files changed

+338
-470
lines changed

Diff for: package.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"@types/node": "^10.12.18",
7878
"@types/webpack": "^4.4.22",
7979
"acorn": "^5.2.1",
80-
"babel-eslint": "^8.0.3",
80+
"babel-eslint": "^10.0.1",
8181
"babel-helper-vue-jsx-merge-props": "^2.0.3",
8282
"babel-loader": "^8.0.4",
8383
"babel-plugin-istanbul": "^5.1.0",
@@ -89,15 +89,15 @@
8989
"codecov": "^3.0.0",
9090
"commitizen": "^2.9.6",
9191
"conventional-changelog": "^1.1.3",
92-
"cross-spawn": "^5.1.0",
92+
"cross-spawn": "^6.0.5",
9393
"cz-conventional-changelog": "^2.0.0",
9494
"de-indent": "^1.0.2",
9595
"es6-promise": "^4.1.0",
9696
"escodegen": "^1.8.1",
9797
"eslint": "^5.7.0",
9898
"eslint-plugin-flowtype": "^2.34.0",
9999
"eslint-plugin-jasmine": "^2.8.4",
100-
"file-loader": "^1.1.5",
100+
"file-loader": "^3.0.1",
101101
"flow-bin": "^0.61.0",
102102
"hash-sum": "^1.0.2",
103103
"he": "^1.1.1",
@@ -112,23 +112,22 @@
112112
"karma-mocha-reporter": "^2.2.3",
113113
"karma-phantomjs-launcher": "^1.0.4",
114114
"karma-safari-launcher": "^1.0.0",
115-
"karma-sauce-launcher": "^1.1.0",
115+
"karma-sauce-launcher": "^2.0.2",
116116
"karma-sourcemap-loader": "^0.3.7",
117117
"karma-webpack": "^4.0.0-rc.2",
118-
"lint-staged": "^7.0.0",
118+
"lint-staged": "^8.0.0",
119119
"lodash": "^4.17.4",
120120
"lodash.template": "^4.4.0",
121121
"lodash.uniq": "^4.5.0",
122-
"lru-cache": "^4.1.1",
122+
"lru-cache": "^5.1.1",
123123
"nightwatch": "^0.9.16",
124124
"nightwatch-helpers": "^1.2.0",
125125
"phantomjs-prebuilt": "^2.1.14",
126126
"puppeteer": "^1.11.0",
127127
"resolve": "^1.3.3",
128-
"rollup": "^0.68.1",
128+
"rollup": "^1.0.0",
129129
"rollup-plugin-alias": "^1.3.1",
130-
"rollup-plugin-babel": "^4.0.1",
131-
"rollup-plugin-buble": "^0.19.2",
130+
"rollup-plugin-buble": "^0.19.6",
132131
"rollup-plugin-commonjs": "^9.2.0",
133132
"rollup-plugin-flow-no-whitespace": "^1.0.0",
134133
"rollup-plugin-node-resolve": "^4.0.0",
@@ -141,7 +140,7 @@
141140
"webpack": "^4.22.0",
142141
"weex-js-runtime": "^0.23.6",
143142
"weex-styler": "^0.3.0",
144-
"yorkie": "^1.0.1"
143+
"yorkie": "^2.0.0"
145144
},
146145
"config": {
147146
"commitizen": {

Diff for: scripts/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function buildEntry (config) {
4646
const isProd = /(min|prod)\.js$/.test(file)
4747
return rollup.rollup(config)
4848
.then(bundle => bundle.generate(output))
49-
.then(({ code }) => {
49+
.then(({ output: [{ code }] }) => {
5050
if (isProd) {
5151
const minified = (banner ? banner + '\n' : '') + terser.minify(code, {
5252
toplevel: true,

0 commit comments

Comments
 (0)