File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ node_modules
18
18
* .yaml
19
19
openapi-jsonschema *
20
20
21
+ .vscode /*
Original file line number Diff line number Diff line change 1
1
make : linux darwin windows
2
2
3
- darwin :
3
+ #
4
+ # ALL SUPPORT
5
+ #
6
+
7
+ darwin : darwin-arm
4
8
nexe index.js -t darwin-x64 -o kubeopenapi-jsonschema-darwin -r " ./node_modules/**/*"
5
9
6
- linux :
10
+ linux : linux-arm
7
11
nexe index.js -t linux-x64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
8
12
9
- windows :
13
+ windows : windows-arm
10
14
nexe index.js -t windows-x64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
11
15
12
- alpine :
16
+ alpine : alpine-arm
13
17
nexe index.js -t alpine-x64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
18
+
19
+ #
20
+ # ARM SUPPORT
21
+ #
22
+ darwin-arm :
23
+ nexe index.js -t darwin-arm64 -o kubeopenapi-jsonschema-darwin -r " ./node_modules/**/*"
24
+
25
+ linux-arm :
26
+ nexe index.js -t linux-arm64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
27
+
28
+ windows-arm :
29
+ nexe index.js -t windows-arm64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
30
+
31
+ alpine-arm :
32
+ nexe index.js -t alpine-arm64 -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
33
+
34
+ .PHONY : darwin darwin-arm alpine alpine-arm linux linux-arm
You can’t perform that action at this time.
0 commit comments