-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathgulpfile.ts
77 lines (67 loc) · 4.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { gulp_installResourceGroups, gulp_webpack } from '@microsoft/vscode-azext-dev';
import * as cp from 'child_process';
import * as fs from 'fs';
import * as gulp from 'gulp';
import * as path from 'path';
async function prepareForWebpack(): Promise<void> {
const mainJsPath: string = path.join(__dirname, 'main.js');
let contents: string = fs.readFileSync(mainJsPath).toString();
contents = contents
.replace('out/src/extension', 'dist/extension.bundle')
.replace(', true /* ignoreBundle */', '');
fs.writeFileSync(mainJsPath, contents);
}
async function cleanReadme(): Promise<void> {
const readmePath: string = path.join(__dirname, 'README.md');
let data: string = fs.readFileSync(readmePath).toString();
data = data.replace(/<!-- region exclude-from-marketplace -->.*?<!-- endregion exclude-from-marketplace -->/gis, '');
fs.writeFileSync(readmePath, data);
}
async function setAzCopyExePermissions(): Promise<void> {
console.debug('Setting permissions for azcopy executables in ', __dirname);
// Related: https://github.com/microsoft/vscode-azurestorage/issues/1346
console.log(cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`).toString());
try {
console.log('BEFORE', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`).toString());
cp.execSync(`chmod u+x ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`);
console.log('AFTER', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`).toString());
}
catch (error) {
console.error('Error setting permissions for azcopy executables in ', __dirname);
console.error(error);
}
try {
console.log('BEFORE', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`).toString());
cp.execSync(`chmod u+x ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`);
console.log('AFTER', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`).toString());
}
catch (error) {
console.error('Error setting permissions for azcopy executables in ', __dirname);
console.error(error);
}
try {
console.log('BEFORE', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`).toString());
cp.execSync(`chmod u+x ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`);
console.log('AFTER', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-darwin/dist/bin/azcopy_darwin_amd64')}`).toString());
} catch (error) {
console.error('Error setting permissions for azcopy executables in ', __dirname);
console.error(error);
}
try {
console.log('BEFORE', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`).toString());
cp.execSync(`chmod u+x ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`);
console.log('AFTER', cp.execSync(`ls -l ${path.join(__dirname, 'node_modules/@azure-tools/azcopy-node/node_modules/@azure-tools/azcopy-linux/dist/bin/azcopy_linux_amd64')}`).toString());
} catch (error) {
console.error('Error setting permissions for azcopy executables in ', __dirname);
console.error(error);
}
}
exports['webpack-dev'] = gulp.series(prepareForWebpack, () => gulp_webpack('development'));
exports['webpack-prod'] = gulp.series(prepareForWebpack, () => gulp_webpack('production'));
exports.preTest = gulp.series(gulp_installResourceGroups);
exports.cleanReadme = cleanReadme;
exports.setAzCopyExePermissions = setAzCopyExePermissions;