MCPcopy
hub / github.com/microsoft/vscode-js-debug / fixNightlyReadme

Function fixNightlyReadme

gulpfile.js:88–94  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

86gulp.task('clean', () => del(['dist/**', 'src/*/package.nls.*.json', 'packages/**', '*.vsix']));
87
88async 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
96const getVersionNumber = () => {
97 if (process.env.JS_DEBUG_VERSION) {

Callers 1

gulpfile.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected