Skip to content

Commit 5ac78a9

Browse files
committed
Move tsc to build step so it's clearer
1 parent 641ba8f commit 5ac78a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"scripts": {
1111
"clean": "rm -rf dist",
1212
"lint": "github-lint",
13-
"prebuild": "npm run clean && npm run lint && tsc",
14-
"build": "rollup -c",
13+
"prebuild": "npm run clean && npm run lint",
14+
"build": "tsc && rollup -c",
1515
"pretest": "npm run build",
1616
"test": "karma start test/karma.config.cjs",
1717
"prepublishOnly": "npm run build",

0 commit comments

Comments
 (0)