Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn committed Jan 11, 2020
1 parent 941d200 commit cee7c12
Show file tree
Hide file tree
Showing 3 changed files with 1,963 additions and 2,089 deletions.
3 changes: 2 additions & 1 deletion build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ function buildEntry ({ input, output }) {
const isProd = /min\.js$/.test(output.file)
return rollup.rollup(input)
.then(bundle => bundle.generate(output))
.then(({ code }) => {
.then(result => {
const { code } = result.output[0]
if (isProd) {
const minified = uglify.minify(code, {
output: {
Expand Down
53 changes: 26 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,36 +38,35 @@
},
"homepage": "https://github.com/vuejs/vue-class-component#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.5",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.4",
"babel-loader": "^8.0.6",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"chai": "^4.1.2",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-plugin-vue-libs": "^3.0.0",
"mocha": "^5.0.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rollup": "^0.66.5",
"chai": "^4.2.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-vue-libs": "^4.0.0",
"mocha": "^7.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-replace": "^2.0.0",
"testdouble": "^3.5.0",
"ts-loader": "^5.2.1",
"typescript": "^3.1.1",
"typescript-eslint-parser": "^20.0.0",
"rollup-plugin-replace": "^2.2.0",
"testdouble": "^3.12.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"typescript-eslint-parser": "^22.0.0",
"uglify-es": "^3.3.9",
"vue": "^2.5.13",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
"vue": "^2.6.11",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}

0 comments on commit cee7c12

Please sign in to comment.