This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
gulpfile.js
440 lines (402 loc) · 14.2 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
var gulp = require("gulp");
var msbuild = require("gulp-msbuild");
var debug = require("gulp-debug");
var foreach = require("gulp-foreach");
var rename = require("gulp-rename");
var watch = require("gulp-watch");
var merge = require("merge-stream");
var newer = require("gulp-newer");
var util = require("gulp-util");
var runSequence = require("run-sequence");
var path = require("path");
var config = require("./gulp-config.js")();
var nugetRestore = require('gulp-nuget-restore');
var fs = require('fs');
var unicorn = require("./scripts/unicorn.js");
var habitat = require("./scripts/habitat.js");
var yargs = require("yargs").argv;
module.exports.config = config;
gulp.task("default", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-License",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
"05-Sync-Unicorn",
callback);
});
gulp.task("buildonly", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-License",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
callback);
});
gulp.task("resources", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"Publish-Global-CSS",
"Publish-Global-less",
"Publish-Global-sass",
"Publish-Global-Scripts",
callback);
});
gulp.task("habitatDefault", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-License",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
"05-Sync-Unicorn",
"06-Deploy-Transforms",
callback);
});
gulp.task("deploy", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-License",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
"06-Deploy-Transforms",
callback);
});
/*****************************
Initial setup
*****************************/
gulp.task("01-Copy-Sitecore-License", function () {
console.log("Copying Sitecore License file from configured Source to Solution lib directory");
//license file exists in gulp-config
//gulp.dest - will copy to "lib" folder in solution directory.
//not sure why this is needed?
return gulp.src(config.licensePath).pipe(gulp.dest("./lib"));
});
gulp.task("02-Nuget-Restore", function (callback) {
var solution = "./" + config.solutionName + ".sln";
console.log("Running nugetRestore Command on sln: " + solution);
return gulp.src(solution).pipe(nugetRestore());
});
gulp.task("03-Publish-All-Projects", function (callback) {
//First Step Cleans and Builds entire solution
//Later Steps will do a project by project build
//The ouptut of each build will be in a "obj/package" folder
//within the project and then copied to website root
//note when I first tried to get this to work, I had errors
//due to Habitat project files being in the features folder
//not sure if I fat fingered it, or yeoman set it up with
//the default scafolding. Once cleaned up, it worked fine.
return runSequence(
"Build-Solution",
"Publish-Foundation-Projects",
"Publish-Feature-Projects",
"Publish-Project-Projects", callback);
});
gulp.task("04-Apply-Xml-Transform", function () {
//Currently don't have any transforms.
var layerPathFilters = ["./src/Foundation/**/*.transform", "./src/Feature/**/*.transform", "./src/Project/**/*.transform", "!./src/**/obj/**/*.transform", "!./src/**/bin/**/*.transform"];
return gulp.src(layerPathFilters)
.pipe(foreach(function (stream, file) {
var fileToTransform = file.path.replace(/.+code\\(.+)\.transform/, "$1");
util.log("Applying configuration transform: " + file.path);
return gulp.src("./scripts/applytransform.targets")
.pipe(msbuild({
targets: ["ApplyTransform"],
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: config.buildToolsVersion,
properties: {
Platform: config.buildPlatform,
WebConfigToTransform: config.websiteRoot,
TransformFile: file.path,
FileToTransform: fileToTransform
}
}));
}));
});
gulp.task("05-Sync-Unicorn", function (callback) {
//This is dependent on Unicorn being installed on your instance
//If this is your main solution, you just need to add a reference to Unicorn using Nuget
//This wasn't clear to me at first, but I followed what habitat did and created
//A standalone Foundation project named Serialization to include this reference/configuration.
//Also note, I was getting an error after deploying the Rainbow.config file in the Serialization project.
//Could not get pipeline: preprocessRequest
//To resolve, I downgraded the version of Unicorn and Rainbow to the versions that ship with the Habitat Project
var options = {};
options.siteHostName = habitat.getSiteUrl();
console.log('Syncing Unicorn to ' + options.siteHostName);
options.authenticationConfigFile = config.websiteRoot + "/App_config/Include/Unicorn/Unicorn.UI.config";
unicorn(function() { return callback() }, options);
});
gulp.task("06-Deploy-Transforms", function () {
return gulp.src("./src/**/code/**/*.transform")
.pipe(gulp.dest(config.websiteRoot + "/temp/transforms"));
});
/*****************************
Copy assemblies to all local projects
*****************************/
gulp.task("Copy-Local-Assemblies", function () {
console.log("Copying site assemblies to all local projects");
var files = config.sitecoreLibraries + "/**/*";
var root = "./src";
var projects = root + "/**/code/bin";
return gulp.src(projects, { base: root })
.pipe(foreach(function (stream, file) {
console.log("copying to " + file.path);
gulp.src(files)
.pipe(gulp.dest(file.path));
return stream;
}));
});
/*****************************
Publish
*****************************/
var publishStream = function (stream, dest) {
var targets = ["Build"];
return stream
.pipe(debug({ title: "Building project:" }))
.pipe(msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: config.buildToolsVersion,
properties: {
Platform: config.publishPlatform,
DeployOnBuild: "true",
DeployDefaultTarget: "WebPublish",
WebPublishMethod: "FileSystem",
DeleteExistingFiles: "false",
publishUrl: dest,
_FindDependencies: "false"
}
}));
}
var publishProject = function (location, dest) {
dest = dest || config.websiteRoot;
console.log("publish to " + dest + " folder");
return gulp.src(["./src/" + location + "/code/*.csproj"])
.pipe(foreach(function (stream, file) {
return publishStream(stream, dest);
}));
}
var publishProjects = function (location, dest) {
dest = dest || config.websiteRoot;
console.log("publish to " + dest + " folder");
return gulp.src([location + "/**/code/*.csproj"])
.pipe(foreach(function (stream, file) {
return publishStream(stream, dest);
}));
};
gulp.task("Build-Solution", function () {
//Do a clean, or clean and build
var targets = ["Build"];
if (config.runCleanBuilds) {
targets = ["Clean", "Build"];
}
var solution = "./" + config.solutionName + ".sln";
console.log("running MSBuild on Solution: " + solution);
return gulp.src(solution)
.pipe(msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: config.buildToolsVersion,
properties: {
Platform: config.buildPlatform
}
}));
});
gulp.task("Publish-Foundation-Projects", function () {
return publishProjects("./src/Foundation");
});
gulp.task("Publish-Feature-Projects", function () {
return publishProjects("./src/Feature");
});
gulp.task("Publish-Project-Projects", function () {
return publishProjects("./src/Project");
});
gulp.task("Publish-Project", function () {
if(yargs && yargs.m && typeof(yargs.m) == 'string') {
return publishProject(yargs.m);
} else {
throw "\n\n------\n USAGE: -m Layer/Module \n------\n\n";
}
});
gulp.task("Publish-Assemblies", function () {
var root = "./src";
var binFiles = root + "/**/code/**/bin/Sitecore.{Feature,Foundation,Habitat}.*.{dll,pdb}";
var destination = config.websiteRoot + "/bin/";
return gulp.src(binFiles, { base: root })
.pipe(rename({ dirname: "" }))
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
});
gulp.task("Publish-All-Views", function () {
var root = "./src";
var roots = [root + "/**/Views", "!" + root + "/**/obj/**/Views"];
var files = "/**/*.cshtml";
var destination = config.websiteRoot + "\\Views";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Publishing from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-All-Configs", function () {
var root = "./src";
var roots = [root + "/**/App_Config", "!" + root + "/**/obj/**/App_Config"];
var files = "/**/*.config";
var destination = config.websiteRoot + "\\App_Config";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Publishing from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-Global-CSS", function () {
var root = "./src";
var roots = [root + "/**/global/css", "!" + root + "/**/obj/**/global/css"];
var files = "/**/*.css";
var destination = config.websiteRoot + "\\global\\css";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Copying Styles " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-Global-less", function () {
var root = "./src";
var roots = [root + "/**/global/less", "!" + root + "/**/obj/**/global/less"];
var files = "/**/*.less";
var destination = config.websiteRoot + "\\global\\less";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Copying Less " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-Global-sass", function () {
var root = "./src";
var roots = [root + "/**/global/sass", "!" + root + "/**/obj/**/global/sass"];
var files = "/**/*.scss";
var destination = config.websiteRoot + "\\global\\sass";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Copying Sass from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-Global-Scripts", function () {
var root = "./src";
var roots = [root + "/**/global/scripts", "!" + root + "/**/obj/**/global/scripts"];
var files = "/**/*.js";
var destination = config.websiteRoot + "\\global\\scripts";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Copying Scripts " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
/*****************************
Watchers
*****************************/
gulp.task("Auto-Publish-Css", function () {
var root = "./src";
var roots = [root + "/**/styles", "!" + root + "/**/obj/**/styles"];
var files = "/**/*.css";
var destination = config.websiteRoot + "\\styles";
gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});
gulp.task("Auto-Publish-Views", function () {
var root = "./src";
var roots = [root + "/**/Views", "!" + root + "/**/obj/**/Views"];
var files = "/**/*.cshtml";
var destination = config.websiteRoot + "\\Views";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});
gulp.task("Auto-Publish-Assemblies", function () {
var root = "./src";
var roots = [root + "/**/code/**/bin"];
var files = "/**/Sitecore.{Feature,Foundation,Habitat}.*.{dll,pdb}";;
var destination = config.websiteRoot + "/bin/";
gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});