forked from OctopusDeploy/Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
274 lines (232 loc) · 9.38 KB
/
gulpfile.babel.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
'use strict';
import gulp from 'gulp';
import gutil from 'gulp-util';
import gulpLoadPlugins from 'gulp-load-plugins';
import browserSync from 'browser-sync';
import LiveServer from 'gulp-live-server';
import sass from 'gulp-sass';
import concat from 'gulp-concat';
import replace from 'gulp-replace';
import header from 'gulp-header';
import footer from 'gulp-footer';
import del from 'del';
import source from 'vinyl-source-stream';
import merge from 'merge-stream';
import buffer from 'vinyl-buffer';
import babelify from 'babelify';
import reactify from 'reactify';
import browserify from 'browserify';
import uglify from 'gulp-uglify';
import cssnano from 'gulp-cssnano';
import rename from 'gulp-rename';
import sourcemaps from 'gulp-sourcemaps';
import inject from 'gulp-inject';
import yargs from 'yargs';
import rev from 'gulp-rev';
import glob from 'glob';
import envify from 'envify/custom';
import jasmine from 'gulp-jasmine';
import jasmineReporters from 'jasmine-reporters';
import jasmineTerminalReporter from 'jasmine-terminal-reporter';
import eventStream from 'event-stream';
import {Converter} from 'csvtojson';
import fs from 'fs';
import jsonlint from 'gulp-jsonlint';
const clientDir = 'app';
const serverDir = 'server';
const buildDir = 'build';
const publishDir = 'dist';
const $ = gulpLoadPlugins({
rename: {
'gulp-expect-file': 'expect'
}
});
const reload = browserSync.reload;
const argv = yargs.argv;
const vendorStyles = [
'node_modules/font-awesome/css/font-awesome.min.css',
'node_modules/font-awesome/css/font-awesome.css.map',
'node_modules/font-awesome/fonts/fontawesome*{.eot,.svg,.ttf,.woff,.woff2,.otf}',
'node_modules/normalize.css/normalize.css'
];
gulp.task('clean', () => {
del.sync([`${publishDir}`, `${buildDir}`, `${clientDir}/data/*.json`]);
});
function lint(files, options) {
return () => {
return gulp.src(files)
.pipe(reload({stream: true, once: true}))
.pipe($.eslint(options))
.pipe($.eslint.format('compact'))
.pipe($.if(!browserSync.active, $.eslint.failOnError()));
};
}
gulp.task('lint:client', lint(`${clientDir}/**/*.jsx`));
gulp.task('lint:server', lint(`./${serverDir}/server.js`));
gulp.task('lint:step-templates', () => {
return gulp.src('./step-templates/*.json')
.pipe($.expect({ errorOnFailure: true, silent: true }, glob.sync('step-templates/*.json')))
.pipe(jsonlint())
.pipe(jsonlint.failOnError())
.pipe(jsonlint.reporter());
});
gulp.task('tests', ['lint:step-templates'], () => {
return gulp.src('./spec/*-tests.js')
// gulp-jasmine works on filepaths so you can't have any plugins before it
.pipe(jasmine({
includeStackTrace: false,
reporter: [
new jasmineReporters.JUnitXmlReporter(),
(process.env.TEAMCITY_VERSION
? new jasmineReporters.TeamCityReporter()
: new jasmineTerminalReporter())
]
}))
.on('error', function(){
process.exit(1);
});
});
function humanize(categoryId){
switch(categoryId){
case 'aspnet': return 'ASP.NET';
case 'aws': return 'AWS';
case 'clickonce': return 'ClickOnce';
case 'edgecast': return 'EdgeCast';
case 'elmah': return 'ELMAH';
case 'entityframework': return 'Entity Framework';
case 'event-tracing': return 'Event Tracing for Windows';
case 'filesystem': return 'File System';
case 'github': return 'GitHub';
case 'ghostinspector': return 'Ghost Inspector';
case 'hipchat': return 'HipChat';
case 'hockeyapp': return 'HockeyApp';
case 'http': return 'HTTP';
case 'iis': return 'IIS';
case 'linux': return 'Linux';
case 'microsoft-teams': return 'Microsoft Teams';
case 'netscaler': return 'NetScaler';
case 'newrelic': return 'New Relic';
case 'nunit': return 'NUnit';
case 'pagerduty': return 'PagerDuty';
case 'ravendb': return 'RavenDB';
case 'rabbitmq': return 'RabbitMQ';
case 'readyroll': return 'ReadyRoll';
case 'sharepoint': return 'SharePoint';
case 'solarwinds': return 'SolarWinds';
case 'sql': return 'SQL Server';
case 'ssl': return 'SSL';
case 'statuspage': return 'StatusPage';
case 'teamcity': return 'TeamCity';
case 'webdeploy': return 'Web Deploy';
case 'xml': return 'XML';
default: return categoryId[0].toUpperCase() + categoryId.substr(1).toLowerCase();
}
}
function provideMissingData() {
return eventStream.map(function(file, cb) {
var fileContent = file.contents.toString();
var template = JSON.parse(fileContent);
var pathParts = file.path.split('\\');
var fileName = pathParts[pathParts.length - 1];
if (!template.HistoryUrl) {
template.HistoryUrl = 'https://github.com/OctopusDeploy/Library/commits/master/step-templates/' + fileName;
}
if (!template.Website) {
template.Website = '/step-templates/' + template.Id;
}
var categoryId = template.Category;
if (!categoryId) {
categoryId = 'other';
}
categoryId = categoryId.toLowerCase();
template.Category = humanize(categoryId);
if (!template.Logo) {
var logo = fs.readFileSync('./step-templates/logos/' + categoryId + '.png');
template.Logo = new Buffer(logo).toString('base64');
}
file.contents = new Buffer(JSON.stringify(template));
cb(null, file);
});
}
gulp.task('step-templates', ['tests'], () => {
return gulp.src('./step-templates/*.json')
.pipe(provideMissingData())
.pipe(concat('step-templates.json', {newLine: ','}))
.pipe(header('{"items": ['))
.pipe(footer(']}'))
.pipe(argv.production ? gulp.dest(`${publishDir}/app/services`) : gulp.dest(`${buildDir}/app/services`));
});
gulp.task('styles:vendor', () => {
return gulp.src(vendorStyles, {base: 'node_modules/'})
.pipe(argv.production ? gulp.dest(`${publishDir}/public/styles/vendor`) : gulp.dest(`${buildDir}/public/styles/vendor`));
});
gulp.task('styles:client', () => {
return gulp.src(`${clientDir}/content/styles/main.scss`)
.pipe(sass().on('error', sass.logError))
.pipe($.if(argv.production, sourcemaps.init({loadMaps: true})))
.pipe($.if(argv.production, cssnano())).on('error', gutil.log)
.pipe($.if(argv.production, rename({suffix: '.min'})))
.pipe($.if(argv.production, rev()))
.pipe($.if(argv.production, sourcemaps.write('.')))
.pipe(argv.production ? gulp.dest(`${publishDir}/public/styles`) : gulp.dest(`${buildDir}/public/styles`));
});
gulp.task('images', () => {
return gulp.src(`${clientDir}/content/images/**/*{.png,.gif,.jpeg,.jpg,.bmp}`)
.pipe(argv.production ? gulp.dest(`${publishDir}/public/images`) : gulp.dest(`${buildDir}/public/images`));
});
gulp.task('copy:app', () => {
return gulp.src(`${clientDir}/**/*{.jsx,.js}`)
.pipe(argv.production ? gulp.dest(`${publishDir}/app`) : gulp.dest(`${buildDir}/app`));
});
gulp.task('copy:configs', () => {
return gulp.src(['./package.json', './web.config', './IISNode.yml'])
.pipe(argv.production ? gulp.dest(`${publishDir}`) : gulp.dest(`${buildDir}`));
});
gulp.task('scripts', ['lint:client'], () => {
return browserify({
entries: `./${clientDir}/Browser.jsx`,
extensions: ['.jsx', '.js'],
debug: true
})
.transform(babelify)
.transform(reactify)
.transform(envify({'_': 'purge', 'NODE_ENV': argv.production ? 'production' : 'development'}), {global: true})
.bundle()
.pipe(source('app.js'))
.pipe(buffer())
.pipe($.if(argv.production, sourcemaps.init({loadMaps: true})))
.pipe($.if(argv.production, uglify())).on('error', gutil.log)
.pipe($.if(argv.production, rename({suffix: '.min'})))
.pipe($.if(argv.production, rev()))
.pipe($.if(argv.production, sourcemaps.write('.')))
.pipe(argv.production ? gulp.dest(`${publishDir}/public/scripts`) : gulp.dest(`${buildDir}/public/scripts`));
});
gulp.task('build:client', ['step-templates', 'copy:app', 'scripts', 'styles:client', 'styles:vendor', 'images'], () => {
let vendorSources = gulp.src(vendorStyles, {base: 'node_modules/'});
let sources = argv.production
? gulp.src([`${publishDir}/public/**/*.js`, `${publishDir}/public/**/*.css*`, `!${publishDir}/public/**/vendor{,/**}`], {read: false})
: gulp.src([`${buildDir}/public/**/*.js`, `${buildDir}/public/**/*.css*`, `!${buildDir}/public/**/vendor{,/**}`], {read: false});
return gulp.src(`${serverDir}/views/index.jade`)
.pipe(inject(vendorSources, {relative: false, name: 'vendor', ignorePath: 'node_modules', addPrefix: 'styles/vendor'}))
.pipe(inject(sources, {relative: false, ignorePath: `${argv.production ? `${publishDir}` : `${buildDir}`}/public`}))
.pipe(argv.production ? gulp.dest(`${publishDir}/views`) : gulp.dest(`${buildDir}/views`));
});
gulp.task('build:server', ['lint:server'], () => {
return gulp.src([`./${serverDir}/server.js`])
.pipe($.babel())
.pipe(argv.production ? gulp.dest(`${publishDir}`) : gulp.dest(`${buildDir}`));
});
gulp.task('build', ['build:server', 'build:client', 'copy:configs']);
gulp.task('watch', ['clean', 'build'], () => {
let server = LiveServer(`${buildDir}/server.js`);
server.start();
browserSync.init(null, {
proxy: 'http://localhost:9000'
});
gulp.watch(`${clientDir}/**/*.jade`, ['build:client']);
gulp.watch(`${clientDir}/**/*.jsx`, ['scripts', 'copy:app']);
gulp.watch(`${clientDir}/content/styles/**/*.scss`, ['styles:client']);
gulp.watch('step-templates/*.json', ['step-templates']);
gulp.watch(`${buildDir}/**/*.*`).on('change', reload);
});
gulp.task('default', ['clean', 'build']);