2016-12-28 22:49:51 +00:00
|
|
|
/**
|
|
|
|
* Gulp tasks
|
|
|
|
*/
|
|
|
|
|
2017-12-08 12:12:49 +00:00
|
|
|
import * as fs from 'fs';
|
2016-12-28 22:49:51 +00:00
|
|
|
import * as gulp from 'gulp';
|
|
|
|
import * as gutil from 'gulp-util';
|
|
|
|
import * as ts from 'gulp-typescript';
|
2018-03-14 19:41:05 +00:00
|
|
|
const sourcemaps = require('gulp-sourcemaps');
|
2017-02-22 15:54:08 +00:00
|
|
|
import tslint from 'gulp-tslint';
|
2017-01-02 21:03:19 +00:00
|
|
|
import cssnano = require('gulp-cssnano');
|
2017-05-24 00:02:55 +00:00
|
|
|
import * as uglifyComposer from 'gulp-uglify/composer';
|
2017-01-02 21:03:19 +00:00
|
|
|
import pug = require('gulp-pug');
|
2016-12-28 22:49:51 +00:00
|
|
|
import * as rimraf from 'rimraf';
|
2017-11-06 10:59:14 +00:00
|
|
|
import chalk from 'chalk';
|
2017-01-19 19:43:17 +00:00
|
|
|
import imagemin = require('gulp-imagemin');
|
|
|
|
import * as rename from 'gulp-rename';
|
2017-03-01 09:13:01 +00:00
|
|
|
import * as mocha from 'gulp-mocha';
|
2017-03-17 15:02:41 +00:00
|
|
|
import * as replace from 'gulp-replace';
|
2017-08-10 13:37:35 +00:00
|
|
|
import * as htmlmin from 'gulp-htmlmin';
|
2017-05-24 00:47:48 +00:00
|
|
|
const uglifyes = require('uglify-es');
|
2017-12-07 17:44:50 +00:00
|
|
|
|
2018-05-17 06:41:07 +00:00
|
|
|
import locales from './locales';
|
2018-03-28 16:20:40 +00:00
|
|
|
import { fa } from './src/build/fa';
|
2018-04-22 12:32:09 +00:00
|
|
|
const client = require('./built/client/meta.json');
|
2018-04-02 04:15:53 +00:00
|
|
|
import config from './src/config';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-05-24 00:47:48 +00:00
|
|
|
const uglify = uglifyComposer(uglifyes, console);
|
2017-05-23 23:52:08 +00:00
|
|
|
|
2018-03-15 20:45:28 +00:00
|
|
|
const env = process.env.NODE_ENV || 'development';
|
2016-12-28 22:49:51 +00:00
|
|
|
const isProduction = env === 'production';
|
|
|
|
const isDebug = !isProduction;
|
|
|
|
|
2017-01-18 07:42:01 +00:00
|
|
|
if (isDebug) {
|
2017-03-17 15:02:41 +00:00
|
|
|
console.warn(chalk.yellow.bold('WARNING! NODE_ENV is not "production".'));
|
2017-04-01 17:37:43 +00:00
|
|
|
console.warn(chalk.yellow.bold(' built script will not be compressed.'));
|
2017-01-18 07:42:01 +00:00
|
|
|
}
|
|
|
|
|
2017-02-22 01:49:11 +00:00
|
|
|
const constants = require('./src/const.json');
|
|
|
|
|
2018-03-29 11:32:18 +00:00
|
|
|
require('./src/client/docs/gulpfile.ts');
|
2017-12-14 07:24:41 +00:00
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
gulp.task('build', [
|
|
|
|
'build:ts',
|
|
|
|
'build:copy',
|
2017-12-14 07:24:41 +00:00
|
|
|
'build:client',
|
2017-12-14 21:41:57 +00:00
|
|
|
'doc'
|
2016-12-28 22:49:51 +00:00
|
|
|
]);
|
|
|
|
|
2016-12-29 00:10:43 +00:00
|
|
|
gulp.task('rebuild', ['clean', 'build']);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-03-01 09:20:53 +00:00
|
|
|
gulp.task('build:ts', () => {
|
2018-02-10 01:27:05 +00:00
|
|
|
const tsProject = ts.createProject('./tsconfig.json');
|
2017-03-01 09:20:53 +00:00
|
|
|
|
|
|
|
return tsProject
|
2016-12-28 22:49:51 +00:00
|
|
|
.src()
|
2018-03-14 19:41:05 +00:00
|
|
|
.pipe(sourcemaps.init())
|
2016-12-29 00:21:49 +00:00
|
|
|
.pipe(tsProject())
|
2018-03-14 19:41:05 +00:00
|
|
|
.pipe(sourcemaps.write('.', { includeContent: false, sourceRoot: '../built' }))
|
2017-03-17 15:01:59 +00:00
|
|
|
.pipe(gulp.dest('./built/'));
|
2017-03-01 09:20:53 +00:00
|
|
|
});
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-05-05 16:34:48 +00:00
|
|
|
gulp.task('build:copy:views', () =>
|
|
|
|
gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views'))
|
|
|
|
);
|
|
|
|
|
|
|
|
gulp.task('build:copy', ['build:copy:views'], () =>
|
2017-12-16 16:41:22 +00:00
|
|
|
gulp.src([
|
2018-03-26 11:23:55 +00:00
|
|
|
'./build/Release/crypto_key.node',
|
2018-05-05 16:34:48 +00:00
|
|
|
'./src/const.json',
|
|
|
|
'./src/server/web/views/**/*',
|
2017-12-16 16:41:22 +00:00
|
|
|
'./src/**/assets/**/*',
|
2018-03-29 11:32:18 +00:00
|
|
|
'!./src/client/app/**/assets/**/*'
|
2017-12-16 16:41:22 +00:00
|
|
|
]).pipe(gulp.dest('./built/'))
|
2016-12-29 06:04:22 +00:00
|
|
|
);
|
|
|
|
|
2017-03-01 09:13:01 +00:00
|
|
|
gulp.task('test', ['lint', 'mocha']);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
gulp.task('lint', () =>
|
|
|
|
gulp.src('./src/**/*.ts')
|
|
|
|
.pipe(tslint({
|
|
|
|
formatter: 'verbose'
|
|
|
|
}))
|
|
|
|
.pipe(tslint.report())
|
|
|
|
);
|
|
|
|
|
2017-11-07 00:04:16 +00:00
|
|
|
gulp.task('format', () =>
|
|
|
|
gulp.src('./src/**/*.ts')
|
|
|
|
.pipe(tslint({
|
|
|
|
formatter: 'verbose',
|
|
|
|
fix: true
|
|
|
|
}))
|
|
|
|
.pipe(tslint.report())
|
|
|
|
);
|
|
|
|
|
2017-03-01 09:13:01 +00:00
|
|
|
gulp.task('mocha', () =>
|
|
|
|
gulp.src([])
|
|
|
|
.pipe(mocha({
|
2018-04-03 04:03:37 +00:00
|
|
|
exit: true,
|
|
|
|
compilers: 'ts:ts-node/register'
|
2017-03-01 09:13:01 +00:00
|
|
|
} as any))
|
|
|
|
);
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
gulp.task('clean', cb =>
|
|
|
|
rimraf('./built', cb)
|
|
|
|
);
|
|
|
|
|
|
|
|
gulp.task('cleanall', ['clean'], cb =>
|
|
|
|
rimraf('./node_modules', cb)
|
|
|
|
);
|
|
|
|
|
|
|
|
gulp.task('default', ['build']);
|
|
|
|
|
|
|
|
gulp.task('build:client', [
|
2017-03-22 20:53:09 +00:00
|
|
|
'build:ts',
|
|
|
|
'build:client:script',
|
2016-12-28 22:49:51 +00:00
|
|
|
'build:client:pug',
|
|
|
|
'copy:client'
|
2017-01-18 07:42:01 +00:00
|
|
|
]);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-03-22 20:53:09 +00:00
|
|
|
gulp.task('build:client:script', () =>
|
2018-03-29 11:32:18 +00:00
|
|
|
gulp.src(['./src/client/app/boot.js', './src/client/app/safe.js'])
|
2018-04-22 12:32:09 +00:00
|
|
|
.pipe(replace('VERSION', JSON.stringify(client.version)))
|
2017-12-11 03:20:36 +00:00
|
|
|
.pipe(replace('API', JSON.stringify(config.api_url)))
|
2018-03-15 20:45:28 +00:00
|
|
|
.pipe(replace('ENV', JSON.stringify(env)))
|
2018-05-17 06:41:07 +00:00
|
|
|
.pipe(replace('LANGS', JSON.stringify(Object.keys(locales))))
|
2017-05-25 07:45:18 +00:00
|
|
|
.pipe(isProduction ? uglify({
|
|
|
|
toplevel: true
|
2017-11-06 10:59:14 +00:00
|
|
|
} as any) : gutil.noop())
|
2018-03-29 11:32:18 +00:00
|
|
|
.pipe(gulp.dest('./built/client/assets/')) as any
|
2017-03-22 15:41:11 +00:00
|
|
|
);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-01-13 16:26:39 +00:00
|
|
|
gulp.task('build:client:styles', () =>
|
2018-03-29 11:32:18 +00:00
|
|
|
gulp.src('./src/client/app/init.css')
|
2016-12-28 22:49:51 +00:00
|
|
|
.pipe(isProduction
|
2017-02-22 15:54:08 +00:00
|
|
|
? (cssnano as any)()
|
2016-12-28 22:49:51 +00:00
|
|
|
: gutil.noop())
|
2018-03-29 11:32:18 +00:00
|
|
|
.pipe(gulp.dest('./built/client/assets/'))
|
2017-01-13 16:26:39 +00:00
|
|
|
);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
gulp.task('copy:client', [
|
2018-03-02 10:20:52 +00:00
|
|
|
'build:client:script'
|
2017-01-13 16:26:39 +00:00
|
|
|
], () =>
|
2017-02-22 15:54:08 +00:00
|
|
|
gulp.src([
|
2017-03-22 07:19:32 +00:00
|
|
|
'./assets/**/*',
|
2018-03-29 11:32:18 +00:00
|
|
|
'./src/client/assets/**/*',
|
|
|
|
'./src/client/app/*/assets/**/*'
|
2017-02-22 15:54:08 +00:00
|
|
|
])
|
|
|
|
.pipe(isProduction ? (imagemin as any)() : gutil.noop())
|
|
|
|
.pipe(rename(path => {
|
2017-03-22 07:19:32 +00:00
|
|
|
path.dirname = path.dirname.replace('assets', '.');
|
2017-02-22 15:54:08 +00:00
|
|
|
}))
|
2018-03-29 11:32:18 +00:00
|
|
|
.pipe(gulp.dest('./built/client/assets/'))
|
2017-01-13 16:26:39 +00:00
|
|
|
);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
gulp.task('build:client:pug', [
|
|
|
|
'copy:client',
|
2017-03-22 20:53:09 +00:00
|
|
|
'build:client:script',
|
2016-12-28 22:49:51 +00:00
|
|
|
'build:client:styles'
|
2017-03-22 15:41:11 +00:00
|
|
|
], () =>
|
2018-03-29 11:32:18 +00:00
|
|
|
gulp.src('./src/client/app/base.pug')
|
2017-04-01 17:37:18 +00:00
|
|
|
.pipe(pug({
|
|
|
|
locals: {
|
2017-12-07 17:44:50 +00:00
|
|
|
themeColor: constants.themeColor,
|
2017-12-17 05:35:30 +00:00
|
|
|
facss: fa.dom.css(),
|
2017-12-08 12:12:49 +00:00
|
|
|
//hljscss: fs.readFileSync('./node_modules/highlight.js/styles/default.css', 'utf8')
|
2018-03-29 11:32:18 +00:00
|
|
|
hljscss: fs.readFileSync('./src/client/assets/code-highlight.css', 'utf8')
|
2017-04-01 17:37:18 +00:00
|
|
|
}
|
|
|
|
}))
|
2017-08-10 13:37:35 +00:00
|
|
|
.pipe(htmlmin({
|
|
|
|
// 真理値属性の簡略化 e.g.
|
|
|
|
// <input value="foo" readonly="readonly"> to
|
|
|
|
// <input value="foo" readonly>
|
|
|
|
collapseBooleanAttributes: true,
|
|
|
|
|
|
|
|
// テキストの一部かもしれない空白も削除する e.g.
|
|
|
|
// <div> <p> foo </p> </div> to
|
|
|
|
// <div><p>foo</p></div>
|
|
|
|
collapseWhitespace: true,
|
|
|
|
|
2017-08-11 09:58:20 +00:00
|
|
|
// タグ間の改行を保持する
|
|
|
|
preserveLineBreaks: true,
|
|
|
|
|
2017-08-10 13:37:35 +00:00
|
|
|
// (できる場合は)属性のクォーテーション削除する e.g.
|
|
|
|
// <p class="foo-bar" id="moo" title="blah blah">foo</p> to
|
|
|
|
// <p class=foo-bar id=moo title="blah blah">foo</p>
|
|
|
|
removeAttributeQuotes: true,
|
|
|
|
|
|
|
|
// 省略可能なタグを省略する e.g.
|
|
|
|
// <html><p>yo</p></html> ro
|
|
|
|
// <p>yo</p>
|
|
|
|
removeOptionalTags: true,
|
|
|
|
|
|
|
|
// 属性の値がデフォルトと同じなら省略する e.g.
|
|
|
|
// <input type="text"> to
|
|
|
|
// <input>
|
2017-12-08 05:03:14 +00:00
|
|
|
removeRedundantAttributes: true,
|
|
|
|
|
|
|
|
// CSSも圧縮する
|
|
|
|
minifyCSS: true
|
2017-08-10 13:37:35 +00:00
|
|
|
}))
|
2018-03-29 11:32:18 +00:00
|
|
|
.pipe(gulp.dest('./built/client/app/'))
|
2017-03-22 15:41:11 +00:00
|
|
|
);
|