We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c3dd40 commit 573185fCopy full SHA for 573185f
1 file changed
Makefile
@@ -26,8 +26,18 @@ dev:
26
yarn tsc -w
27
28
.PHONY: fixtures
29
-fixtures: __tests__/fixtures/petstore.json
+fixtures: petstore test1
30
+
31
+.PHONY: petstore
32
+petstore: __tests__/fixtures/petstore.json
33
node --enable-source-maps dist/bin/index.js \
34
-i __tests__/fixtures/petstore.json \
35
-o __tests__/fixtures/petstore
- yarn prettier --write __tests__/fixtures/petstore
36
+ yarn prettier --write __tests__/fixtures/petstore
37
38
+.PHONY: test1
39
+test1: __tests__/fixtures/test1.json
40
+ node --enable-source-maps dist/bin/index.js \
41
+ -i __tests__/fixtures/test1.json \
42
+ -o __tests__/fixtures/test1
43
+ yarn prettier --write __tests__/fixtures/test1
0 commit comments