Skip to content

Commit 7e1b524

Browse files
committed
Fixed incremental build so that npm run build does full rebuild while prepare is partial
1 parent f08a4ef commit 7e1b524

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
/docs
1414
/benches
1515
/builds
16+
/dist/tsbuildinfo

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
]
2626
},
2727
"scripts": {
28+
"prepare": "tsc -p ./tsconfig.build.json",
2829
"build": "rm -r ./dist || true; tsc -p ./tsconfig.build.json",
2930
"ts-node": "ts-node -r tsconfig-paths/register",
3031
"test": "jest",

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"outDir": "./dist",
4-
"tsBuildInfoFile": "./tmp/tsbuildinfo",
4+
"tsBuildInfoFile": "./dist/tsbuildinfo",
55
"incremental": true,
66
"sourceMap": true,
77
"declaration": true,

0 commit comments

Comments
 (0)