We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ota-meshi
mysticatea
Learn more about funding links in repositories.
Report abuse
1 parent 87efc6d commit 8878b99Copy full SHA for 8878b99
package.json
@@ -7,9 +7,7 @@
7
},
8
"main": "index.js",
9
"files": [
10
- "index.d.ts",
11
- "index.js",
12
- "index.js.map"
+ "index.*"
13
],
14
"peerDependencies": {
15
"eslint": "^5.0.0"
rollup.config.js
@@ -18,12 +18,11 @@ export default {
18
format: "cjs",
19
sourcemap: true,
20
sourcemapFile: "index.js.map",
21
- },
22
- plugins: [sourcemaps(), resolve()],
23
- external: id => deps.has(id) || id.startsWith("lodash"),
24
- banner: `/**
+ banner: `/**
25
* @author Toru Nagashima <https://github.com/mysticatea>
26
- * @copyright 2017 Toru Nagashima. All rights reserved.
27
* See LICENSE file in root directory for full license.
28
*/`,
+ },
+ plugins: [sourcemaps(), resolve()],
+ external: id => deps.has(id) || id.startsWith("lodash"),
29
}
0 commit comments