From 276303d826bf94b9e6d6cdf5697cb1feb54c89ca Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Sun, 14 Jul 2019 18:06:09 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=92=20upgrade=20rollup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- rollup.config.js | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 3579e9a..ebcb5fc 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "nyc": "^13.0.1", "opener": "^1.4.3", "rimraf": "^2.6.2", - "rollup": "^0.66.4", + "rollup": "^1.16.7", "rollup-plugin-sourcemaps": "^0.4.2", "vuepress": "^0.14.4", "warun": "^1.0.0" diff --git a/rollup.config.js b/rollup.config.js index 38ee717..069f8e1 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -16,9 +16,8 @@ function config(ext) { file: `index${ext}`, format: ext === ".mjs" ? "es" : "cjs", sourcemap: true, - sourcemapFile: `index${ext}.map`, - strict: true, - banner: `/*! @author Toru Nagashima */`, + banner: + "/*! @author Toru Nagashima */", }, plugins: [sourcemaps()], external: Object.keys(require("./package.json").dependencies),