Sharkey/gulpfile.ts

144 lines
3.4 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Gulp tasks
*/
import * as gulp from 'gulp';
import * as ts from 'gulp-typescript';
2018-03-14 21:41:05 +02:00
const sourcemaps = require('gulp-sourcemaps');
import tslint from 'gulp-tslint';
const stylus = require('gulp-stylus');
2016-12-29 00:49:51 +02:00
import * as rimraf from 'rimraf';
2019-11-24 10:09:32 +02:00
import * as chalk from 'chalk';
2017-01-19 21:43:17 +02:00
import * as rename from 'gulp-rename';
2017-03-01 11:13:01 +02:00
import * as mocha from 'gulp-mocha';
2017-03-17 17:02:41 +02:00
import * as replace from 'gulp-replace';
const cleanCSS = require('gulp-clean-css');
const terser = require('gulp-terser');
2017-12-07 19:44:50 +02:00
2018-07-06 06:17:38 +03:00
const locales = require('./locales');
2016-12-29 00:49:51 +02:00
2018-03-15 22:45:28 +02:00
const env = process.env.NODE_ENV || 'development';
const isDebug = env !== 'production';
2016-12-29 00:49:51 +02:00
2017-01-18 09:42:01 +02:00
if (isDebug) {
2017-03-17 17:02:41 +02:00
console.warn(chalk.yellow.bold('WARNING! NODE_ENV is not "production".'));
2017-04-01 20:37:43 +03:00
console.warn(chalk.yellow.bold(' built script will not be compressed.'));
2017-01-18 09:42:01 +02:00
}
2017-03-01 11:20:53 +02:00
gulp.task('build:ts', () => {
2018-02-10 03:27:05 +02:00
const tsProject = ts.createProject('./tsconfig.json');
2017-03-01 11:20:53 +02:00
return tsProject
2016-12-29 00:49:51 +02:00
.src()
2018-03-14 21:41:05 +02:00
.pipe(sourcemaps.init())
2016-12-29 02:21:49 +02:00
.pipe(tsProject())
.on('error', () => {})
2018-03-14 21:41:05 +02:00
.pipe(sourcemaps.write('.', { includeContent: false, sourceRoot: '../built' }))
2017-03-17 17:01:59 +02:00
.pipe(gulp.dest('./built/'));
2017-03-01 11:20:53 +02:00
});
2016-12-29 00:49:51 +02:00
gulp.task('build:copy:views', () =>
gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views'))
);
MisskeyRoom (#5267) * wip * Add pemcil * Fix bug * Update .gitattributes * Add :custard: * Better :custard: * Add color boxes * Add pc * Add keyboard * Add :package: * Add more :package: * :v: * carpet * Add plant * :v: * :v: * Update room.vue * Add plant * :v: * :v: * :v: * :v: * :v: * 段ボール箱がてかりすぎているのを修正 * Update room.ts * Render username * :v: * Add new :package: * Update room.ts * Remove blender backup files * Refactor * Improve performance * Update room.ts * Update .gitattributes * Update room.ts * Better fan * Better tissue rendering * Add :penguin: * Create photoframe2.glb * chairs * Add :book: * fix: HiDPi環境でオブジェクトを選択できない (#5268) * Better monitor * :v: * Add corkboard * Add missing blend * mousepad * Add missing blend * Add cube * 額縁やモニターなどに任意の画像を表示できるように * Update MisskeyRoom section of CONTRIBUTING.md (#5272) * Update MisskeyRoom section of CONTRIBUTING.md * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Refactor * カスタムテクスチャがずれないように * Remove debug code * Update furnitures.json5 * 一部の家具の色を自由に変えられるように * Update ja-JP.yml * Type annotation * 家具の色やテクスチャをすぐ反映するように * Update room.vue * Update furnitures.json5 * Add :tv: * Update ja-JP.yml * 床の色を変えられるように * 和室にできるように * Update washitsu * Use MeshLambertMaterial to improve performance * Use MeshLambertMaterial * Fix bug * Refactor * Update room.ts * Fix washitsu * Update room.vue * Update washistu * Use MeshLambertMaterial * Update room.ts * Set current property value * Disable reactivity to improve performance a bit * Fix bug * Set current carpet color * Update ja-JP.yml * Add rubik-cube (#5278) * Update ja-JP.yml (#5279) * Update UI * ルームの設定を追加 * Add room link * 家具をドラッグで移動や回転できるように * esnextにする (#5286) * Fix moduleResolution * Use uuid v4 * Fix bug * マットの色を変えられるように * :v: * 異方性フィルタリングするように * グラフィックの品質をフィルタリングに反映 * Add bloom effect when ultra graphics * Add posters * :art:
2019-08-18 08:41:33 +03: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 18:41:22 +02:00
gulp.src([
'./src/const.json',
'./src/emojilist.json',
'./src/server/web/views/**/*',
2017-12-16 18:41:22 +02:00
'./src/**/assets/**/*',
2018-03-29 14:32:18 +03:00
'!./src/client/app/**/assets/**/*'
2017-12-16 18:41:22 +02:00
]).pipe(gulp.dest('./built/'))
));
2016-12-29 00:49:51 +02:00
gulp.task('lint', () =>
gulp.src('./src/**/*.ts')
.pipe(tslint({
formatter: 'verbose'
}))
.pipe(tslint.report())
);
gulp.task('format', () =>
2018-07-18 13:36:36 +03:00
gulp.src('./src/**/*.ts')
.pipe(tslint({
formatter: 'verbose',
fix: true
}))
.pipe(tslint.report())
);
2017-03-01 11:13:01 +02:00
gulp.task('mocha', () =>
2018-07-25 07:37:40 +03:00
gulp.src('./test/**/*.ts')
2017-03-01 11:13:01 +02:00
.pipe(mocha({
2018-04-03 07:03:37 +03:00
exit: true,
2018-07-25 07:37:40 +03:00
require: 'ts-node/register'
2017-03-01 11:13:01 +02:00
} as any))
);
2019-01-29 09:31:05 +02:00
gulp.task('test', gulp.task('mocha'));
2016-12-29 00:49:51 +02:00
gulp.task('clean', cb =>
rimraf('./built', cb)
);
gulp.task('cleanall', gulp.parallel('clean', cb =>
2016-12-29 00:49:51 +02:00
rimraf('./node_modules', cb)
));
2016-12-29 00:49:51 +02:00
2018-07-19 00:53:46 +03:00
gulp.task('build:client:script', () => {
const client = require('./built/meta.json');
2018-07-19 00:53:46 +03:00
return gulp.src(['./src/client/app/boot.js', './src/client/app/safe.js'])
.pipe(replace('VERSION', JSON.stringify(client.version)))
2018-03-15 22:45:28 +02:00
.pipe(replace('ENV', JSON.stringify(env)))
2018-05-17 09:41:07 +03:00
.pipe(replace('LANGS', JSON.stringify(Object.keys(locales))))
.pipe(terser({
2017-05-25 10:45:18 +03:00
toplevel: true
}))
2018-07-19 00:53:46 +03:00
.pipe(gulp.dest('./built/client/assets/'));
});
2016-12-29 00:49:51 +02:00
2017-01-13 18:26:39 +02:00
gulp.task('build:client:styles', () =>
2018-03-29 14:32:18 +03:00
gulp.src('./src/client/app/init.css')
.pipe(cleanCSS())
2018-03-29 14:32:18 +03:00
.pipe(gulp.dest('./built/client/assets/'))
2017-01-13 18:26:39 +02:00
);
2016-12-29 00:49:51 +02:00
2019-01-29 09:26:10 +02:00
gulp.task('copy:client', () =>
gulp.src([
2017-03-22 09:19:32 +02:00
'./assets/**/*',
2018-03-29 14:32:18 +03:00
'./src/client/assets/**/*',
'./src/client/app/*/assets/**/*'
])
.pipe(rename(path => {
path.dirname = path.dirname!.replace('assets', '.');
}))
2018-03-29 14:32:18 +03:00
.pipe(gulp.dest('./built/client/assets/'))
2017-01-13 18:26:39 +02:00
);
2016-12-29 00:49:51 +02:00
gulp.task('doc', () =>
gulp.src('./src/docs/**/*.styl')
.pipe(stylus())
.pipe(cleanCSS())
.pipe(gulp.dest('./built/docs/assets/'))
);
2019-01-29 09:31:05 +02: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'));