FoundKey/gulpfile.ts

185 lines
4.2 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Gulp tasks
*/
2017-03-22 20:53:09 +00:00
import * as childProcess from 'child_process';
2016-12-29 06:12:34 +00:00
import * as fs from 'fs';
2016-12-29 09:29:58 +00:00
import * as Path from 'path';
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';
import tslint from 'gulp-tslint';
2016-12-28 22:49:51 +00:00
import * as glob from 'glob';
import * as es from 'event-stream';
2017-01-02 21:03:19 +00:00
import cssnano = require('gulp-cssnano');
2017-03-13 08:23:05 +00:00
//import * as uglify from 'gulp-uglify';
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-01-18 07:42:01 +00:00
import * as 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-03-22 15:41:11 +00:00
import version from './src/version';
2016-12-28 22:49:51 +00:00
const env = process.env.NODE_ENV;
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".'));
console.warn(chalk.yellow.bold(' built script compessing will not be performed.'));
2017-01-18 07:42:01 +00:00
}
2017-02-22 01:49:11 +00:00
const constants = require('./src/const.json');
2016-12-28 22:49:51 +00:00
gulp.task('build', [
'build:js',
'build:ts',
2016-12-29 06:07:36 +00:00
'build:about:docs',
2016-12-28 22:49:51 +00:00
'build:copy',
'build:client'
]);
2016-12-29 00:10:43 +00:00
gulp.task('rebuild', ['clean', 'build']);
2016-12-28 22:49:51 +00:00
gulp.task('build:js', () =>
gulp.src(['./src/**/*.js', '!./src/web/**/*.js'])
.pipe(gulp.dest('./built/'))
);
2017-03-01 09:20:53 +00:00
gulp.task('build:ts', () => {
const tsProject = ts.createProject('./src/tsconfig.json');
return tsProject
2016-12-28 22:49:51 +00:00
.src()
2016-12-29 00:21:49 +00:00
.pipe(tsProject())
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
2017-01-13 16:28:11 +00:00
gulp.task('build:about:docs', () => {
2017-01-18 05:32:03 +00:00
function getLicenseHtml(path: string) {
2017-02-22 01:49:11 +00:00
return fs.readFileSync(path, 'utf-8')
2017-01-13 16:28:11 +00:00
.replace(/\r\n/g, '\n')
.replace(/(.)\n(.)/g, '$1 $2')
.replace(/(^|\n)(.*?)($|\n)/g, '<p>$2</p>');
}
2016-12-29 07:08:34 +00:00
2016-12-29 09:29:58 +00:00
const licenseHtml = getLicenseHtml('./LICENSE');
2017-02-22 01:49:11 +00:00
const streams = glob.sync('./docs/**/*.pug').map(file => {
2016-12-30 21:50:13 +00:00
const page = file.replace('./docs/', '').replace('.pug', '');
return gulp.src(file)
.pipe(pug({
2017-02-22 01:49:11 +00:00
locals: {
2016-12-29 06:12:34 +00:00
path: page,
2016-12-29 09:29:58 +00:00
license: licenseHtml,
2017-02-22 01:49:11 +00:00
themeColor: constants.themeColor
}
}))
2016-12-29 09:29:58 +00:00
.pipe(gulp.dest('./built/web/about/pages/' + Path.parse(page).dir));
});
return es.merge.apply(es, streams);
2016-12-28 22:49:51 +00:00
});
gulp.task('build:copy', () =>
es.merge(
gulp.src([
2017-03-22 07:19:32 +00: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 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-03-01 09:13:01 +00:00
gulp.task('mocha', () =>
gulp.src([])
.pipe(mocha({
2017-03-04 10:03:59 +00:00
//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:js',
'webpack',
'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('webpack', done => {
const output = childProcess.execSync(Path.join('.', 'node_modules', '.bin', 'webpack') + ' --config webpack.config.ts', );
console.log(output.toString());
done();
});
gulp.task('build:client:script', () =>
gulp.src('./src/web/app/client/script.js')
.pipe(replace('VERSION', JSON.stringify(version)))
//.pipe(isProduction ? uglify() : gutil.noop())
.pipe(gulp.dest('./built/web/assets/client/')) 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', () =>
2017-02-19 09:21:03 +00:00
gulp.src('./src/web/app/init.css')
2016-12-28 22:49:51 +00:00
.pipe(isProduction
? (cssnano as any)()
2016-12-28 22:49:51 +00:00
: gutil.noop())
2017-03-22 07:19:32 +00:00
.pipe(gulp.dest('./built/web/assets/'))
2017-01-13 16:26:39 +00:00
);
2016-12-28 22:49:51 +00:00
gulp.task('copy:client', [
2017-03-22 20:53:09 +00:00
'build:client:script',
'webpack'
2017-01-13 16:26:39 +00:00
], () =>
gulp.src([
2017-03-22 07:19:32 +00:00
'./assets/**/*',
'./src/web/assets/**/*',
'./src/web/app/*/assets/**/*'
])
.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-03-22 07:19:32 +00:00
.pipe(gulp.dest('./built/web/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
], () =>
2017-04-01 17:37:18 +00:00
gulp.src('./src/web/app/*/view.pug')
.pipe(pug({
locals: {
version: version,
themeColor: constants.themeColor
}
}))
.pipe(gulp.dest('./built/web/app/'))
2017-03-22 15:41:11 +00:00
);