()
| 86 | gulp.task('clean', () => del(['dist/**', 'src/*/package.nls.*.json', 'packages/**', '*.vsix'])); |
| 87 | |
| 88 | async function fixNightlyReadme() { |
| 89 | const readmePath = `${buildDir}/README.md`; |
| 90 | const readmeText = await readFile(readmePath); |
| 91 | const readmeNightlyText = await readFile(`README.nightly.md`); |
| 92 | |
| 93 | await writeFile(readmePath, readmeNightlyText + '\n' + readmeText); |
| 94 | } |
| 95 | |
| 96 | const getVersionNumber = () => { |
| 97 | if (process.env.JS_DEBUG_VERSION) { |