File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
- .PHONY : clean
1
+ .PHONY : all
2
2
3
- docs : dist equiv-checker.html tsconfig.build.json
3
+ all : Makefile node_modules/.stamp docs/.stamp dist/.stamp
4
+
5
+ # ###################################################
6
+
7
+ docs/.stamp : dist/.stamp equiv-checker.html tsconfig.build.json
4
8
npx typedoc --tsconfig tsconfig.build.json
5
9
cp -r dist/ docs/dist/
6
10
cp equiv-checker.html docs/
11
+ touch $@
7
12
8
- dist : src node_modules tsconfig.build.json
13
+ dist/.stamp : tsconfig.build.json src/ * .ts
9
14
npx tsc --project tsconfig.build.json
10
15
npx tsc-alias
16
+ touch $@
11
17
12
- node_modules : package-lock.json
18
+ node_modules/.stamp : package-lock.json
13
19
npm ci
14
-
15
- # ###################################################
16
-
17
- clean :
18
- rm -rf dist/ docs/
20
+ touch $@
You can’t perform that action at this time.
0 commit comments