misskey/gulpfile.ts

196 lines
4.6 KiB
TypeScript
Raw Normal View History

2016-12-28 14:49:51 -08:00
/**
* Gulp tasks
*/
2017-03-22 13:53:09 -07:00
import * as childProcess from 'child_process';
2016-12-29 01:29:58 -08:00
import * as Path from 'path';
2016-12-28 14:49:51 -08:00
import * as gulp from 'gulp';
import * as gutil from 'gulp-util';
import * as ts from 'gulp-typescript';
import tslint from 'gulp-tslint';
2016-12-28 14:49:51 -08:00
import * as es from 'event-stream';
2017-01-02 13:03:19 -08:00
import cssnano = require('gulp-cssnano');
import * as uglifyComposer from 'gulp-uglify/composer';
2017-01-02 13:03:19 -08:00
import pug = require('gulp-pug');
2016-12-28 14:49:51 -08:00
import * as rimraf from 'rimraf';
2017-01-17 23:42:01 -08:00
import * as chalk from 'chalk';
2017-01-19 11:43:17 -08:00
import imagemin = require('gulp-imagemin');
import * as rename from 'gulp-rename';
2017-03-01 01:13:01 -08:00
import * as mocha from 'gulp-mocha';
2017-03-17 08:02:41 -07:00
import * as replace from 'gulp-replace';
2017-08-10 06:37:35 -07:00
import * as htmlmin from 'gulp-htmlmin';
2017-05-23 17:47:48 -07:00
const uglifyes = require('uglify-es');
2017-03-22 08:41:11 -07:00
import version from './src/version';
2016-12-28 14:49:51 -08:00
2017-05-23 17:47:48 -07:00
const uglify = uglifyComposer(uglifyes, console);
2016-12-28 14:49:51 -08:00
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
const isDebug = !isProduction;
2017-01-17 23:42:01 -08:00
if (isDebug) {
2017-03-17 08:02:41 -07:00
console.warn(chalk.yellow.bold('WARNING! NODE_ENV is not "production".'));
2017-04-01 10:37:43 -07:00
console.warn(chalk.yellow.bold(' built script will not be compressed.'));
2017-01-17 23:42:01 -08:00
}
2017-02-21 17:49:11 -08:00
const constants = require('./src/const.json');
2016-12-28 14:49:51 -08:00
gulp.task('build', [
'build:js',
'build:ts',
'build:copy',
'build:client'
]);
2016-12-28 16:10:43 -08:00
gulp.task('rebuild', ['clean', 'build']);
2016-12-28 14:49:51 -08:00
gulp.task('build:js', () =>
gulp.src(['./src/**/*.js', '!./src/web/**/*.js'])
.pipe(gulp.dest('./built/'))
);
2017-03-01 01:20:53 -08:00
gulp.task('build:ts', () => {
const tsProject = ts.createProject('./src/tsconfig.json');
return tsProject
2016-12-28 14:49:51 -08:00
.src()
2016-12-28 16:21:49 -08:00
.pipe(tsProject())
2017-03-17 08:01:59 -07:00
.pipe(gulp.dest('./built/'));
2017-03-01 01:20:53 -08:00
});
2016-12-28 14:49:51 -08:00
gulp.task('build:copy', () =>
es.merge(
gulp.src([
2017-03-22 00:19:32 -07:00
'./src/**/assets/**/*',
'!./src/web/app/**/assets/**/*'
]).pipe(gulp.dest('./built/')) as any,
gulp.src([
'./src/web/about/**/*',
'!./src/web/about/**/*.pug'
]).pipe(gulp.dest('./built/web/about/')) as any
)
);
2017-03-01 01:13:01 -08:00
gulp.task('test', ['lint', 'mocha']);
2016-12-28 14:49:51 -08:00
gulp.task('lint', () =>
gulp.src('./src/**/*.ts')
.pipe(tslint({
formatter: 'verbose'
}))
.pipe(tslint.report())
);
2017-03-01 01:13:01 -08:00
gulp.task('mocha', () =>
gulp.src([])
.pipe(mocha({
2017-03-04 02:03:59 -08:00
//compilers: 'ts:ts-node/register'
2017-03-01 01:13:01 -08:00
} as any))
);
2016-12-28 14:49:51 -08: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 13:53:09 -07:00
'build:ts',
'build:js',
'webpack',
'build:client:script',
2016-12-28 14:49:51 -08:00
'build:client:pug',
'copy:client'
2017-01-17 23:42:01 -08:00
]);
2016-12-28 14:49:51 -08:00
2017-03-22 13:53:09 -07:00
gulp.task('webpack', done => {
2017-05-23 22:56:26 -07:00
const webpack = childProcess.spawn(
Path.join('.', 'node_modules', '.bin', 'webpack'),
['--config', './webpack/webpack.config.ts'], {
shell: true,
stdio: 'inherit'
2017-05-23 22:56:26 -07:00
});
2017-05-16 08:00:56 -07:00
2017-05-23 22:56:26 -07:00
webpack.on('exit', done);
2017-03-22 13:53:09 -07:00
});
gulp.task('build:client:script', () =>
2017-05-24 14:33:59 -07:00
gulp.src(['./src/web/app/boot.js', './src/web/app/safe.js'])
2017-03-22 13:53:09 -07:00
.pipe(replace('VERSION', JSON.stringify(version)))
2017-05-25 00:45:18 -07:00
.pipe(isProduction ? uglify({
toplevel: true
}) : gutil.noop())
2017-05-17 13:22:19 -07:00
.pipe(gulp.dest('./built/web/assets/')) as any
2017-03-22 08:41:11 -07:00
);
2016-12-28 14:49:51 -08:00
2017-01-13 08:26:39 -08:00
gulp.task('build:client:styles', () =>
2017-02-19 01:21:03 -08:00
gulp.src('./src/web/app/init.css')
2016-12-28 14:49:51 -08:00
.pipe(isProduction
? (cssnano as any)()
2016-12-28 14:49:51 -08:00
: gutil.noop())
2017-03-22 00:19:32 -07:00
.pipe(gulp.dest('./built/web/assets/'))
2017-01-13 08:26:39 -08:00
);
2016-12-28 14:49:51 -08:00
gulp.task('copy:client', [
2017-03-22 13:53:09 -07:00
'build:client:script',
'webpack'
2017-01-13 08:26:39 -08:00
], () =>
gulp.src([
2017-03-22 00:19:32 -07:00
'./assets/**/*',
'./src/web/assets/**/*',
'./src/web/app/*/assets/**/*'
])
.pipe(isProduction ? (imagemin as any)() : gutil.noop())
.pipe(rename(path => {
2017-03-22 00:19:32 -07:00
path.dirname = path.dirname.replace('assets', '.');
}))
2017-03-22 00:19:32 -07:00
.pipe(gulp.dest('./built/web/assets/'))
2017-01-13 08:26:39 -08:00
);
2016-12-28 14:49:51 -08:00
gulp.task('build:client:pug', [
'copy:client',
2017-03-22 13:53:09 -07:00
'build:client:script',
2016-12-28 14:49:51 -08:00
'build:client:styles'
2017-03-22 08:41:11 -07:00
], () =>
2017-05-17 13:12:31 -07:00
gulp.src('./src/web/app/base.pug')
2017-04-01 10:37:18 -07:00
.pipe(pug({
locals: {
themeColor: constants.themeColor
}
}))
2017-08-10 06:37:35 -07: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 02:58:20 -07:00
// タグ間の改行を保持する
preserveLineBreaks: true,
2017-08-10 06:37:35 -07: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>
removeRedundantAttributes: true
}))
2017-04-01 10:37:18 -07:00
.pipe(gulp.dest('./built/web/app/'))
2017-03-22 08:41:11 -07:00
);