forked from microsoft/vscode-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
177 lines (155 loc) · 6.05 KB
/
gulpfile.js
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
var gulp = require('gulp');
var log = require('gulp-util').log;
var sourcemaps = require('gulp-sourcemaps');
var path = require('path');
var preprocess = require('gulp-preprocess');
var runSequence = require("run-sequence");
var ts = require('gulp-typescript');
var mocha = require('gulp-mocha');
var GulpExtras = require("./tools/gulp-extras");
var minimist = require('minimist');
var os = require("os");
var fs = require("fs");
var Q = require("q");
var copyright = GulpExtras.checkCopyright;
var imports = GulpExtras.checkImports;
var executeCommand = GulpExtras.executeCommand;
var srcPath = 'src';
var outPath = 'out';
var sources = [
srcPath,
].map(function (tsFolder) { return tsFolder + '/**/*.ts'; })
.concat(['test/*.ts']);
var knownOptions = {
string: 'env',
default: { env: 'production' }
};
var options = minimist(process.argv.slice(2), knownOptions);
// TODO: The file property should point to the generated source (this implementation adds an extra folder to the path)
// We should also make sure that we always generate urls in all the path properties (We shouldn't have \\s. This seems to
// be an issue on Windows platforms)
gulp.task('build', ["check-imports", "check-copyright"], function (callback) {
var tsProject = ts.createProject('tsconfig.json');
var isProd = options.env === 'production';
var preprocessorContext = isProd ? { PROD: true } : { DEBUG: true };
log(`Building with preprocessor context: ${JSON.stringify(preprocessorContext)}`);
return tsProject.src()
.pipe(preprocess({ context: preprocessorContext })) //To set environment variables in-line
.pipe(sourcemaps.init())
.pipe(tsProject())
.on('error', function (e) {
callback(e);
})
.pipe(sourcemaps.write('.', {
includeContent: false,
sourceRoot: function (file) {
return path.relative(path.dirname(path.dirname(file.path)), __dirname + '/src');
}
}))
.pipe(gulp.dest(outPath));
});
gulp.task('watch', ['build'], function (cb) {
log('Watching build sources...');
return gulp.watch(sources, ['build']);
});
gulp.task('default', function (callback) {
runSequence("clean", "build", "tslint", callback);
});
var lintSources = [
srcPath,
].map(function (tsFolder) { return tsFolder + '/**/*.ts'; });
lintSources = lintSources.concat([
'!src/typings/**',
'!src/test/resources/sampleReactNative022Project/**',
]);
var tslint = require('gulp-tslint');
gulp.task('tslint', function () {
return gulp.src(lintSources, { base: '.' })
.pipe(tslint())
.pipe(tslint.report('verbose'));
});
function test() {
// Check if arguments were passed
if (options.pattern) {
console.log("\nTesting cases that match pattern: " + options.pattern);
} else {
console.log("\nTesting cases that don't match pattern: extensionContext");
}
return gulp.src(['out/test/**/*.test.js', '!out/test/extension/**'])
.pipe(mocha({
ui: 'tdd',
useColors: true,
invert: !options.pattern,
grep: options.pattern || "extensionContext"
}));
}
gulp.task('test', ['build', 'tslint'], test);
gulp.task('test-no-build', test);
gulp.task('check-imports', function (cb) {
var tsProject = ts.createProject('tsconfig.json');
return tsProject.src()
.pipe(imports());
});
gulp.task('check-copyright', function (cb) {
return gulp.src([
"**/*.ts",
"**/*.js",
"!**/*.d.ts",
"!node_modules/**",
"!out/test/**/*.js",
"!SampleApplication/**",
"!src/test/resources/sampleReactNative022Project/**/*.js",
])
.pipe(copyright());
});
gulp.task('watch-build-test', ['build', 'build-test'], function () {
return gulp.watch(sources, ['build', 'build-test']);
});
gulp.task("clean", function () {
var del = require("del");
var pathsToDelete = [
outPath,
".vscode-test"
].map(function (folder) {
return folder + "/**";
});
return del(pathsToDelete, { force: true });
});
gulp.task("package", function (callback) {
var command = path.join(__dirname, "node_modules", ".bin", "vsce");
var args = ["package"];
executeCommand(command, args, callback);
});
gulp.task("release", ["build"], function () {
var licenseFiles = ["LICENSE.txt", "ThirdPartyNotices.txt"];
var backupFolder = path.resolve(path.join(os.tmpdir(), 'vscode-react-native'));
if (!fs.existsSync(backupFolder)) {
fs.mkdirSync(backupFolder);
}
return Q({})
.then(function () {
/* back up LICENSE.txt, ThirdPartyNotices.txt, README.md */
console.log("Backing up license files to " + backupFolder + "...");
licenseFiles.forEach(function (fileName) {
fs.writeFileSync(path.join(backupFolder, fileName), fs.readFileSync(fileName));
});
/* copy over the release package license files */
console.log("Preparing license files for release...");
fs.writeFileSync('LICENSE.txt', fs.readFileSync('release/LICENSE.txt'));
fs.writeFileSync('ThirdPartyNotices.txt', fs.readFileSync('release/ThirdPartyNotices.txt'));
}).then(()=>{
console.log("Creating release package...");
var deferred = Q.defer();
// NOTE: vsce must see npm 3.X otherwise it will not correctly strip out dev dependencies.
executeCommand('vsce', ['package'], function (arg) { if (arg) { deferred.reject(arg);} deferred.resolve()} , {cwd: path.resolve(__dirname)});
return deferred.promise;
}).finally(function () {
/* restore backed up files */
console.log("Restoring modified files...");
licenseFiles.forEach(function (fileName) {
fs.writeFileSync(path.join(__dirname, fileName), fs.readFileSync(path.join(backupFolder, fileName)));
});
});
})