Skip to content

Commit 83333c4

Browse files
committed
bump rollup
1 parent f0cfdab commit 83333c4

File tree

3 files changed

+94
-36
lines changed

3 files changed

+94
-36
lines changed

package-lock.json

Lines changed: 84 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
"prepublishOnly": "npm run build"
3737
},
3838
"devDependencies": {
39-
"buble": "^0.15.2",
39+
"buble": "^0.16.0",
4040
"eslint": "^3.0.0",
4141
"eslint-plugin-vue-libs": "^1.2.0",
4242
"jest": "^21.2.1",
43-
"rollup": "^0.41.6",
44-
"rollup-plugin-buble": "^0.15.0",
45-
"rollup-watch": "^3.2.2",
43+
"rollup": "^0.50.0",
44+
"rollup-plugin-buble": "^0.16.0",
45+
"rollup-watch": "^4.3.1",
4646
"rxjs": "^5.2.0",
4747
"typescript": "^2.5.2",
4848
"vue": "^2.5.0"

rollup.config.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
const buble = require('rollup-plugin-buble')
22

33
module.exports = {
4-
entry: 'src/index.js',
5-
dest: 'dist/vue-rx.js',
6-
format: 'umd',
7-
moduleName: 'VueRx',
4+
input: 'src/index.js',
5+
output: {
6+
file: 'dist/vue-rx.js',
7+
format: 'umd',
8+
name: 'VueRx',
9+
},
810
plugins: [buble()]
911
}

0 commit comments

Comments
 (0)