We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e953b9e commit 29f9266Copy full SHA for 29f9266
1 file changed
Makefile
@@ -3,15 +3,12 @@ SRCS = $(wildcard lib/**)
3
4
all: dist
5
6
-.PHONY: deps
7
-deps: node_modules
8
-
9
.PHONY: clean
10
-clean:
+clean: node_modules
11
pnpm exec tsc -b --clean
12
13
.PHONY: test
14
-test: __tests__/fixtures/oas31.json
+test: node_modules
15
pnpm exec tsc
16
pnpm exec vitest
17
@@ -22,10 +19,10 @@ dist: node_modules tsconfig.json $(SRCS)
22
19
23
20
24
21
.PHONY: dist-watch
25
-dist-watch:
+dist-watch: node_modules
26
pnpm exec tsc -w --preserveWatchOutput
27
28
.PHONY: pretty
29
pretty: node_modules
30
pnpm exec eslint --fix . || true
31
- pnpm exec prettier --write .
+ pnpm exec prettier --write .
0 commit comments