Skip to content

Commit

Permalink
Add TypeScript compilation step before run test script
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoBruni committed Jan 23, 2024
1 parent 5b015c1 commit a03e200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint:fix": "npm run lint -- --fix",
"postpublishOnly": "rimraf ./src/index.cjs",
"prepublishOnly": "npm run buildcjs && npm test",
"test": "tap -j1 --allow-incomplete-coverage \"./test/*.test.?(c)js\"",
"test": "npm run tsc; tap -j1 --allow-incomplete-coverage \"./test/*.test.?(c)js\"",
"test:ci": "npm run test",
"test:ts": "tsd",
"tsc": "tsc"
Expand Down

0 comments on commit a03e200

Please sign in to comment.