This repository has been archived by the owner on Sep 17, 2020. It is now read-only.
forked from OctopusDeploy/Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
169 lines (143 loc) · 6.13 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
'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';
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/*')
.pipe($.expect({ errorOnFailure: true }, glob.sync('step-templates/*.json')));
});
gulp.task('step-templates', ['lint:step-templates'], () => {
return gulp.src('./step-templates/*.json')
.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']);