Skip to content

Commit 017a5fd

Browse files
committed
Rename make:* commands to build:*
1 parent 63c927b commit 017a5fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"staged": "lint-staged",
2727
"coverage": "c8 npm test",
2828
"ci": "c8 npm test && c8 report --reporter=json",
29-
"make:esm": "ttsc --project tsconfig.esm.json",
30-
"make:cjs": "ttsc --project tsconfig.cjs.json",
31-
"make": "npm run make:esm && npm run make:cjs",
29+
"build:esm": "ttsc --project tsconfig.esm.json",
30+
"build:cjs": "ttsc --project tsconfig.cjs.json",
31+
"build": "npm run build:esm && npm run build:cjs",
3232
"test": "ava --fail-fast",
3333
"cleanup": "npx rimraf @type \"lib/**/*.js\"",
34-
"prepare": "npm run cleanup && npm run make",
34+
"prepare": "npm run cleanup && npm run build",
3535
"postinstall": "husky install",
3636
"prepublishOnly": "pinst --disable",
3737
"postpublish": "pinst --enable"

0 commit comments

Comments
 (0)