We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c543817 commit ecf4abbCopy full SHA for ecf4abb
scripts/release.js
@@ -19,11 +19,11 @@ function run() {
19
}
20
21
22
- cp.execSync(`make clean`,
+ cp.execSync(`git clean -dfx stubs ext common syntax depends core bsb main .`,
23
{ cwd: jscompDir, encoding: 'utf8', stdio: [0, 1, 2] })
24
- cp.execSync(`make themes`,
25
- { cwd: jscompDir, encoding: 'utf8', stdio: [0, 1, 2] })
26
- cp.execSync(`ninja -t clean && ninja`,
+ cp.execSync(`git clean -dfx templates && ocp-ocamlres templates -o bsb_templates.ml`,
+ { cwd: path.join(jscompDir,'bsb'), encoding: 'utf8', stdio: [0, 1, 2] })
+ cp.execSync(`ninja -t clean -g && ninja`,
27
28
cp.execSync('ninja', {cwd : path.join(rootDir,'lib'), stdio:[0,1,2]})
29
cp.execSync('ninja -f release.ninja -t clean && ninja -f release.ninja', { cwd: path.join(rootDir, 'jscomp'), stdio: [0, 1, 2]})
0 commit comments