Skip to content

Commit 8878b99

Browse files
committedJul 3, 2018
Chore: tweak settings
1 parent 87efc6d commit 8878b99

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed
 

‎package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
},
88
"main": "index.js",
99
"files": [
10-
"index.d.ts",
11-
"index.js",
12-
"index.js.map"
10+
"index.*"
1311
],
1412
"peerDependencies": {
1513
"eslint": "^5.0.0"

‎rollup.config.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ export default {
1818
format: "cjs",
1919
sourcemap: true,
2020
sourcemapFile: "index.js.map",
21-
},
22-
plugins: [sourcemaps(), resolve()],
23-
external: id => deps.has(id) || id.startsWith("lodash"),
24-
banner: `/**
21+
banner: `/**
2522
* @author Toru Nagashima <https://github.com/mysticatea>
26-
* @copyright 2017 Toru Nagashima. All rights reserved.
2723
* See LICENSE file in root directory for full license.
2824
*/`,
25+
},
26+
plugins: [sourcemaps(), resolve()],
27+
external: id => deps.has(id) || id.startsWith("lodash"),
2928
}

0 commit comments

Comments
 (0)
Please sign in to comment.