forked from microsoft/vscode-azure-account
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.ts
48 lines (35 loc) · 1.51 KB
/
gulpfile.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as path from "path";
import { join } from "path";
import * as fse from "fs-extra";
import { readFile, writeFile } from "fs-extra";
import * as gulp from "gulp";
import { gulp_webpack } from "vscode-azureextensiondev";
declare let exports: { [key: string]: unknown };
async function prepareForWebpack(): Promise<void> {
const mainJsPath: string = path.join(__dirname, "main.js");
let contents: string = (await fse.readFile(mainJsPath)).toString();
contents = contents
.replace("out/src/extension", "dist/extension.bundle")
.replace(", true /* ignoreBundle */", "");
await fse.writeFile(mainJsPath, contents);
}
async function cleanReadme(): Promise<void> {
const readmePath: string = join(__dirname, "README.md");
let data: string = (await readFile(readmePath)).toString();
data = data.replace(
/<!-- region exclude-from-marketplace -->.*?<!-- endregion exclude-from-marketplace -->/gis,
"",
);
await writeFile(readmePath, data);
}
exports["webpack-dev"] = gulp.series(prepareForWebpack, () =>
gulp_webpack("development"),
);
exports["webpack-prod"] = gulp.series(prepareForWebpack, () =>
gulp_webpack("production"),
);
exports.cleanReadme = cleanReadme;