Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit e9a070f

Browse files
authored
fix: remove useless sourcemap url (fixes #43) (#44)
1 parent 0398109 commit e9a070f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@
4545
},
4646
"scripts": {
4747
"prepare": "npm run build",
48-
"build": "rollup -c && npm run tsc",
48+
"bundle": "rollup -c",
49+
"build": "npm run bundle && npm run tsc",
50+
"build:debug": "npm run bundle -- -m && npm run tsc",
4951
"lint": "eslint .",
5052
"tsc": "tsc",
5153
"tsd": "tsd",

rollup.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ export default {
33
treeshake: false,
44
output: {
55
format: "cjs",
6-
file: "dist/eslint-visitor-keys.cjs",
7-
sourcemap: true
6+
file: "dist/eslint-visitor-keys.cjs"
87
}
98
};

0 commit comments

Comments
 (0)