Skip to content

Commit

Permalink
chore(npm): make script name consistent for generating .d.ts files (#28)
Browse files Browse the repository at this point in the history
This keeps it inline with how node-js-cjs-parcel and node-js-cjs-webpack specify the script name as "dts".
  • Loading branch information
neoncitylights authored Jan 29, 2024
1 parent 777eaf4 commit 4066b04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions libs/node-js-cjs-esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"dist"
],
"scripts": {
"build": "npm run types && node build.js",
"types": "tsc",
"build": "npm run dts && node build.js",
"dts": "tsc",
"prepublint": "npm run build",
"publint": "publint ."
},
Expand Down
4 changes: 2 additions & 2 deletions libs/node-ts-esm-esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"dist"
],
"scripts": {
"build": "npm run types && node build.js",
"types": "tsc",
"build": "npm run dts && node build.js",
"dts": "tsc",
"prepublint": "npm run build",
"publint": "publint ."
},
Expand Down

0 comments on commit 4066b04

Please sign in to comment.