* wip * tabun ok * better msg * oops * fix lint * Update gulpfile.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update src/client/scripts/set-i18n-contexts.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * refactor Co-authored-by: acid-chicken <root@acid-chicken.com> * ✨ * wip * fix lint * たぶんおk * fix flush * Translate Notification * remove console.log * fix * add notifications * remove san * wip * ok * ✌️ * Update src/prelude/array.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * wip * i18n refactor * Update init.ts * ✌️ Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * Gulp tasks
 | 
						|
 */
 | 
						|
 | 
						|
import * as fs from 'fs';
 | 
						|
import * as gulp from 'gulp';
 | 
						|
import * as ts from 'gulp-typescript';
 | 
						|
import * as rimraf from 'rimraf';
 | 
						|
import * as rename from 'gulp-rename';
 | 
						|
const cleanCSS = require('gulp-clean-css');
 | 
						|
const sass = require('gulp-dart-sass');
 | 
						|
const fiber = require('fibers');
 | 
						|
 | 
						|
const locales: { [x: string]: any } = require('./locales');
 | 
						|
const meta = require('./package.json');
 | 
						|
 | 
						|
gulp.task('build:ts', () => {
 | 
						|
	const tsProject = ts.createProject('./tsconfig.json');
 | 
						|
 | 
						|
	return tsProject
 | 
						|
		.src()
 | 
						|
		.pipe(tsProject())
 | 
						|
		.on('error', () => {})
 | 
						|
		.pipe(gulp.dest('./built/'));
 | 
						|
});
 | 
						|
 | 
						|
gulp.task('build:copy:views', () =>
 | 
						|
	gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views'))
 | 
						|
);
 | 
						|
 | 
						|
gulp.task('build:copy:locales', cb => {
 | 
						|
	fs.mkdirSync('./built/client/assets/locales', { recursive: true });
 | 
						|
 | 
						|
	const v = { '_version_': meta.version };
 | 
						|
 | 
						|
	for (const [lang, locale] of Object.entries(locales)) {
 | 
						|
		fs.writeFileSync(`./built/client/assets/locales/${lang}.${meta.version}.json`, JSON.stringify({ ...locale, ...v }), 'utf-8');
 | 
						|
	}
 | 
						|
 | 
						|
	cb();
 | 
						|
});
 | 
						|
 | 
						|
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:locales', 'build:copy:fonts', () =>
 | 
						|
	gulp.src([
 | 
						|
		'./src/emojilist.json',
 | 
						|
		'./src/server/web/views/**/*',
 | 
						|
		'./src/**/assets/**/*',
 | 
						|
		'!./src/client/assets/**/*'
 | 
						|
	]).pipe(gulp.dest('./built/'))
 | 
						|
));
 | 
						|
 | 
						|
gulp.task('clean', cb =>
 | 
						|
	rimraf('./built', cb)
 | 
						|
);
 | 
						|
 | 
						|
gulp.task('cleanall', gulp.parallel('clean', cb =>
 | 
						|
	rimraf('./node_modules', cb)
 | 
						|
));
 | 
						|
 | 
						|
gulp.task('build:client:styles', () =>
 | 
						|
	gulp.src('./src/client/style.scss')
 | 
						|
		.pipe(sass({ fiber }))
 | 
						|
		.pipe(cleanCSS())
 | 
						|
		.pipe(gulp.dest('./built/client/assets/'))
 | 
						|
);
 | 
						|
 | 
						|
gulp.task('copy:client', () =>
 | 
						|
		gulp.src([
 | 
						|
			'./assets/**/*',
 | 
						|
			'./src/client/assets/**/*',
 | 
						|
		])
 | 
						|
			.pipe(rename(path => {
 | 
						|
				path.dirname = path.dirname!.replace('assets', '.');
 | 
						|
			}))
 | 
						|
			.pipe(gulp.dest('./built/client/assets/'))
 | 
						|
);
 | 
						|
 | 
						|
gulp.task('copy:docs', () =>
 | 
						|
		gulp.src([
 | 
						|
			'./src/docs/**/*',
 | 
						|
		])
 | 
						|
		.pipe(gulp.dest('./built/client/assets/docs/'))
 | 
						|
);
 | 
						|
 | 
						|
gulp.task('build:client', gulp.parallel(
 | 
						|
	'build:client:styles',
 | 
						|
	'copy:client',
 | 
						|
	'copy:docs'
 | 
						|
));
 | 
						|
 | 
						|
gulp.task('build', gulp.parallel(
 | 
						|
	'build:ts',
 | 
						|
	'build:copy',
 | 
						|
	'build:client',
 | 
						|
));
 | 
						|
 | 
						|
gulp.task('default', gulp.task('build'));
 |