Skip to content

Commit

Permalink
fix: remove useless sourcemap url (fixes #566) (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjx666 committed Mar 23, 2023
1 parent 5c85ea8 commit 37f6b17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -74,6 +74,7 @@
"lint": "eslint .",
"fixlint": "npm run lint -- --fix",
"build": "rollup -c rollup.config.js",
"build:debug": "npm run build -- -m",
"update-version": "node tools/update-version.js",
"pretest": "npm run build",
"prepublishOnly": "npm run update-version && npm run build",
Expand Down
3 changes: 1 addition & 2 deletions rollup.config.js
Expand Up @@ -8,8 +8,7 @@ export default {
treeshake: false,
output: {
file: "dist/espree.cjs",
format: "cjs",
sourcemap: true
format: "cjs"
},
plugins: [commonjs(), resolve(), json()]
};

0 comments on commit 37f6b17

Please sign in to comment.