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

Commit

Permalink
fix: remove useless sourcemap url (fixes #43) (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjx666 committed Mar 23, 2023
1 parent 0398109 commit e9a070f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
},
"scripts": {
"prepare": "npm run build",
"build": "rollup -c && npm run tsc",
"bundle": "rollup -c",
"build": "npm run bundle && npm run tsc",
"build:debug": "npm run bundle -- -m && npm run tsc",
"lint": "eslint .",
"tsc": "tsc",
"tsd": "tsd",
Expand Down
3 changes: 1 addition & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ export default {
treeshake: false,
output: {
format: "cjs",
file: "dist/eslint-visitor-keys.cjs",
sourcemap: true
file: "dist/eslint-visitor-keys.cjs"
}
};

0 comments on commit e9a070f

Please sign in to comment.