We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac60f05 commit 0261c47Copy full SHA for 0261c47
Makefile
@@ -1,5 +1,10 @@
1
-default:
2
- ./node_modules/.bin/vsce package
+VSCE=./node_modules/.bin/vsce
+
3
+package default:
4
+ $(VSCE) package
5
6
+publish:
7
+ $(VSCE) publish
8
9
install:
10
code --install-extension proof-debugger-*.vsix
@@ -16,4 +21,13 @@ veryclean: clean
16
21
$(RM) src/*.js
17
22
$(RM) *.vsix
18
23
19
-.PHONY: default install format clean veryclean
24
+setup-macos:
25
+ brew install node
26
+ npm install
27
28
+setup-ubuntu:
29
+ sudo apt install nodejs npm
30
31
32
+.PHONY: default package publish install format clean veryclean
33
+.PHONY: setup-macos setup-ubuntu
0 commit comments