Skip to content

Commit 8fe3bca

Browse files
committed
fix: upgrade compile runtime to vue@2.6.7+
SEE vuejs/vue#9553
1 parent 8862635 commit 8fe3bca

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"jest-puppeteer": "^3.3.1",
5555
"jest-serializer-vue": "^2.0.2",
5656
"lint-staged": "^8.1.0",
57-
"pholio": "^0.4.1",
57+
"pholio": "^0.4.2",
5858
"postcss-cli": "^6.0.0",
5959
"postcss-cssnext": "^3.0.2",
6060
"postcss-each": "^0.10.0",
@@ -81,10 +81,11 @@
8181
"feather-vue": "^1.0.1",
8282
"lodash": "^4.17.4",
8383
"v-color": "^1.1.0",
84-
"v-ctrl": "^1.1.0"
84+
"v-ctrl": "^1.1.0",
85+
"vue": "^2.6.7"
8586
},
8687
"peerDependencies": {
87-
"vue": "^2.5.16"
88+
"vue": "^2.6.0"
8889
},
8990
"gitHooks": {
9091
"pre-commit": "lint-staged && npm run test:unit",

scripts/rollup/plugins.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ export default [
3333
...resolveAlias
3434
}),
3535
cssNoop(),
36-
vue({ css: false }),
36+
vue({
37+
css: false,
38+
// fix: buble options
39+
vue: {
40+
transforms: null
41+
}
42+
}),
3743
buble({
3844
objectAssign: 'Object.assign'
3945
}),

0 commit comments

Comments
 (0)