File tree Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -60,26 +60,45 @@ reset VS Code then run `yarn vscode:patch`.
6060
6161## Build
6262
63+ You can build with:
64+
65+ ``` shell
66+ ./ci/steps/release.sh
67+ ```
68+
69+ Run your build with:
70+
71+ ```
72+ cd release
73+ yarn --production
74+ # Runs the built JavaScript with Node.
75+ node .
76+ ```
77+
78+ Build release packages (make sure you run ` ./ci/steps/release.sh ` first):
79+
80+ ```
81+ ./ci/steps/release-packages.sh
82+ # The standalone release is in ./release-standalone
83+ # .deb, .rpm and the standalone archive are in ./release-packages
84+ ```
85+
86+ The ` release.sh ` script is the equivalent of:
87+
6388``` shell
6489yarn
6590yarn vscode
6691yarn build
6792yarn build:vscode
6893yarn release
69- cd release
70- yarn --production
71- # Runs the built JavaScript with Node.
72- node .
7394```
7495
75- Now you can build release packages with :
96+ And ` release- packages.sh ` is :
7697
7798```
7899yarn release:standalone
79- # The standalone release is in ./release-standalone
80100yarn test:standalone-release
81101yarn package
82- # .deb, .rpm and the standalone archive are in ./release-packages
83102```
84103
85104## Structure
You can’t perform that action at this time.
0 commit comments