Skip to content

Commit 37f6b17

Browse files
authored
fix: remove useless sourcemap url (fixes #566) (#567)
1 parent 5c85ea8 commit 37f6b17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"lint": "eslint .",
7575
"fixlint": "npm run lint -- --fix",
7676
"build": "rollup -c rollup.config.js",
77+
"build:debug": "npm run build -- -m",
7778
"update-version": "node tools/update-version.js",
7879
"pretest": "npm run build",
7980
"prepublishOnly": "npm run update-version && npm run build",

rollup.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ export default {
88
treeshake: false,
99
output: {
1010
file: "dist/espree.cjs",
11-
format: "cjs",
12-
sourcemap: true
11+
format: "cjs"
1312
},
1413
plugins: [commonjs(), resolve(), json()]
1514
};

0 commit comments

Comments
 (0)