jormungandr-bite/gulpfile.ts

149 lines
3.6 KiB
TypeScript
Raw Normal View History

2016-12-28 15:49:51 -07:00
/**
* Gulp tasks
*/
import * as gulp from 'gulp';
import * as gutil from 'gulp-util';
import * as ts from 'gulp-typescript';
2018-03-14 13:41:05 -06:00
const sourcemaps = require('gulp-sourcemaps');
import tslint from 'gulp-tslint';
2018-06-17 04:09:24 -06:00
const cssnano = require('gulp-cssnano');
const stylus = require('gulp-stylus');
import * as uglifyComposer from 'gulp-uglify/composer';
2016-12-28 15:49:51 -07:00
import * as rimraf from 'rimraf';
2017-11-06 03:59:14 -07:00
import chalk from 'chalk';
2018-06-17 04:09:24 -06:00
const imagemin = require('gulp-imagemin');
2017-01-19 12:43:17 -07:00
import * as rename from 'gulp-rename';
2017-03-01 02:13:01 -07:00
import * as mocha from 'gulp-mocha';
2017-03-17 09:02:41 -06:00
import * as replace from 'gulp-replace';
2017-05-23 18:47:48 -06:00
const uglifyes = require('uglify-es');
2017-12-07 10:44:50 -07:00
2018-07-05 21:17:38 -06:00
const locales = require('./locales');
2016-12-28 15:49:51 -07:00
2017-05-23 18:47:48 -06:00
const uglify = uglifyComposer(uglifyes, console);
2018-03-15 14:45:28 -06:00
const env = process.env.NODE_ENV || 'development';
2016-12-28 15:49:51 -07:00
const isProduction = env === 'production';
const isDebug = !isProduction;
2017-01-18 00:42:01 -07:00
if (isDebug) {
2017-03-17 09:02:41 -06:00
console.warn(chalk.yellow.bold('WARNING! NODE_ENV is not "production".'));
2017-04-01 11:37:43 -06:00
console.warn(chalk.yellow.bold(' built script will not be compressed.'));
2017-01-18 00:42:01 -07:00
}
2017-03-01 02:20:53 -07:00
gulp.task('build:ts', () => {
2018-02-09 18:27:05 -07:00
const tsProject = ts.createProject('./tsconfig.json');
2017-03-01 02:20:53 -07:00
return tsProject
2016-12-28 15:49:51 -07:00
.src()
2018-03-14 13:41:05 -06:00
.pipe(sourcemaps.init())
2016-12-28 17:21:49 -07:00
.pipe(tsProject())
.on('error', () => {})
2018-03-14 13:41:05 -06:00
.pipe(sourcemaps.write('.', { includeContent: false, sourceRoot: '../built' }))
2017-03-17 09:01:59 -06:00
.pipe(gulp.dest('./built/'));
2017-03-01 02:20:53 -07:00
});
2016-12-28 15:49:51 -07:00
gulp.task('build:copy:views', () =>
gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views'))
);
gulp.task('build:copy', gulp.parallel('build:copy:views', () =>
2017-12-16 09:41:22 -07:00
gulp.src([
2019-04-09 04:02:02 -06:00
'./build/Release/crypto_key.node',
'./src/const.json',
'./src/server/web/views/**/*',
2017-12-16 09:41:22 -07:00
'./src/**/assets/**/*',
2018-03-29 05:32:18 -06:00
'!./src/client/app/**/assets/**/*'
2017-12-16 09:41:22 -07:00
]).pipe(gulp.dest('./built/'))
));
2016-12-28 15:49:51 -07:00
gulp.task('lint', () =>
gulp.src('./src/**/*.ts')
.pipe(tslint({
formatter: 'verbose'
}))
.pipe(tslint.report())
);
gulp.task('format', () =>
2018-07-18 04:36:36 -06:00
gulp.src('./src/**/*.ts')
.pipe(tslint({
formatter: 'verbose',
fix: true
}))
.pipe(tslint.report())
);
2017-03-01 02:13:01 -07:00
gulp.task('mocha', () =>
2018-07-24 22:37:40 -06:00
gulp.src('./test/**/*.ts')
2017-03-01 02:13:01 -07:00
.pipe(mocha({
2018-04-02 22:03:37 -06:00
exit: true,
2018-07-24 22:37:40 -06:00
require: 'ts-node/register'
2017-03-01 02:13:01 -07:00
} as any))
);
2019-01-29 00:31:05 -07:00
gulp.task('test', gulp.task('mocha'));
2016-12-28 15:49:51 -07:00
gulp.task('clean', cb =>
rimraf('./built', cb)
);
gulp.task('cleanall', gulp.parallel('clean', cb =>
2016-12-28 15:49:51 -07:00
rimraf('./node_modules', cb)
));
2016-12-28 15:49:51 -07:00
2018-07-18 15:53:46 -06:00
gulp.task('build:client:script', () => {
const client = require('./built/client/meta.json');
return gulp.src(['./src/client/app/boot.js', './src/client/app/safe.js'])
.pipe(replace('VERSION', JSON.stringify(client.version)))
2018-03-15 14:45:28 -06:00
.pipe(replace('ENV', JSON.stringify(env)))
2018-05-17 00:41:07 -06:00
.pipe(replace('LANGS', JSON.stringify(Object.keys(locales))))
2017-05-25 01:45:18 -06:00
.pipe(isProduction ? uglify({
toplevel: true
2017-11-06 03:59:14 -07:00
} as any) : gutil.noop())
2018-07-18 15:53:46 -06:00
.pipe(gulp.dest('./built/client/assets/'));
});
2016-12-28 15:49:51 -07:00
2017-01-13 09:26:39 -07:00
gulp.task('build:client:styles', () =>
2018-03-29 05:32:18 -06:00
gulp.src('./src/client/app/init.css')
2016-12-28 15:49:51 -07:00
.pipe(isProduction
? (cssnano as any)()
2016-12-28 15:49:51 -07:00
: gutil.noop())
2018-03-29 05:32:18 -06:00
.pipe(gulp.dest('./built/client/assets/'))
2017-01-13 09:26:39 -07:00
);
2016-12-28 15:49:51 -07:00
2019-01-29 00:26:10 -07:00
gulp.task('copy:client', () =>
gulp.src([
2017-03-22 01:19:32 -06:00
'./assets/**/*',
2018-03-29 05:32:18 -06:00
'./src/client/assets/**/*',
'./src/client/app/*/assets/**/*'
])
.pipe(isProduction ? (imagemin as any)() : gutil.noop())
.pipe(rename(path => {
2017-03-22 01:19:32 -06:00
path.dirname = path.dirname.replace('assets', '.');
}))
2018-03-29 05:32:18 -06:00
.pipe(gulp.dest('./built/client/assets/'))
2017-01-13 09:26:39 -07:00
);
2016-12-28 15:49:51 -07:00
gulp.task('doc', () =>
gulp.src('./src/docs/**/*.styl')
.pipe(stylus())
.pipe((cssnano as any)())
.pipe(gulp.dest('./built/docs/assets/'))
);
2019-01-29 00:31:05 -07:00
gulp.task('build:client', gulp.parallel(
'build:client:script',
'build:client:styles',
'copy:client'
));
gulp.task('build', gulp.parallel(
'build:ts',
'build:copy',
'build:client',
'doc'
));
gulp.task('default', gulp.task('build'));