-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmake.sh
More file actions
executable file
·22 lines (17 loc) · 657 Bytes
/
Copy pathmake.sh
File metadata and controls
executable file
·22 lines (17 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# insall dependencies or update them
npm install # resolve dependencies
# remove cached python files for build service
rm -rf src/XCBBuildServiceProxy/__pycache__
rm -rf src/XCBBuildServiceProxy/lib/psutil/__pycache__
# compile and run tests
npm run compile
npm run test
# locally package and install the extension
vsce package --target darwin-arm64
vsce package
code --install-extension vscode-ios-0.7.17.vsix
# to publish the extension, uncomment the following line
# https://code.visualstudio.com/api/working-with-extensions/publishing-extension#platformspecific-extensions
# vsce publish --target darwin-arm64 darwin-x64
# vsce publish