From 67ab617f82ed6e2eae234e5e6166eb3e045d35ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20S=C3=A1nchez=20Ortega?= Date: Mon, 20 Nov 2017 10:34:18 +0100 Subject: [PATCH] Tweak 'legacy' option in rollup config (#5929) --- build/rollup-config.js | 4 ++-- build/rollup-watch-config.js | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/rollup-config.js b/build/rollup-config.js index b22e7b81..e4ffb2ff 100644 --- a/build/rollup-config.js +++ b/build/rollup-config.js @@ -30,9 +30,9 @@ export default { format: 'umd', name: 'L', banner: banner, - sourcemap: true, - legacy: true // Needed to create files loadable by IE8 + sourcemap: true }, + legacy: true, // Needed to create files loadable by IE8 plugins: [ release ? json() : rollupGitVersion() ] diff --git a/build/rollup-watch-config.js b/build/rollup-watch-config.js index dba26c9a..d9288af3 100644 --- a/build/rollup-watch-config.js +++ b/build/rollup-watch-config.js @@ -20,9 +20,9 @@ export default { format: 'umd', name: 'L', banner: banner, - sourcemap: true, - legacy: true // Needed to create files loadable by IE8 + sourcemap: true }, + legacy: true, // Needed to create files loadable by IE8 plugins: [ rollupGitVersion() ] diff --git a/package.json b/package.json index f6f3bc9a..b367c1e9 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "mocha": "^3.1.0", "phantomjs-prebuilt": "^2.1.12", "prosthetic-hand": "^1.3.1", - "rollup": "^0.49.2", + "rollup": "^0.51.8", "rollup-plugin-git-version": "0.2.1", "rollup-plugin-json": "^2.1.0", "rollup-watch": "^4.3.1",