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