File tree 1 file changed +26
-7
lines changed
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`.
60
60
61
61
## Build
62
62
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
+
63
88
``` shell
64
89
yarn
65
90
yarn vscode
66
91
yarn build
67
92
yarn build:vscode
68
93
yarn release
69
- cd release
70
- yarn --production
71
- # Runs the built JavaScript with Node.
72
- node .
73
94
```
74
95
75
- Now you can build release packages with :
96
+ And ` release- packages.sh ` is :
76
97
77
98
```
78
99
yarn release:standalone
79
- # The standalone release is in ./release-standalone
80
100
yarn test:standalone-release
81
101
yarn package
82
- # .deb, .rpm and the standalone archive are in ./release-packages
83
102
```
84
103
85
104
## Structure
You can’t perform that action at this time.
0 commit comments