From f29152ee71de0b776fb0e7289754f0469696469e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 12 Apr 2019 19:55:14 +0000 Subject: [PATCH 1/2] Update dependency rollup to v0.68.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ebc7186..852fbed 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "mocha": "3.5.3", "mocha-lcov-reporter": "1.3.0", "nyc": "8.4.0", - "rollup": "0.36.4", + "rollup": "0.68.2", "rollup-plugin-babel": "2.7.1", "rollup-plugin-uglify": "1.0.2", "rollup-watch": "2.5.0" From 02d1ce4649a5f32d75e7268f276651969d706bf5 Mon Sep 17 00:00:00 2001 From: Nathanael CHERRIER Date: Fri, 12 Apr 2019 22:04:41 +0200 Subject: [PATCH 2/2] Update rollup.config.js --- rollup.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index cd9fb51..0c2c395 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -5,7 +5,7 @@ let pkg = require('./package.json') let external = Object.keys(pkg.dependencies) export default { - entry: 'src/nativetable/nativetable.js', + input: 'src/nativetable/nativetable.js', external, plugins: [ babel({ @@ -24,8 +24,8 @@ export default { ], targets: [ { - dest: pkg.main, - moduleName: 'nativetable', + file: pkg.main, + name: 'nativetable', format: 'umd' } ]