diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 15:07:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 15:07:36 +0900 |
| commit | 94948583d2085e9a8469ed9c3cb900bdc7522dad (patch) | |
| tree | fe4896033e374817f4d37e7803bc24dc5125a487 | |
| parent | aboutのドキュメント(pug)を予めコンパイルしておくように (diff) | |
| download | misskey-94948583d2085e9a8469ed9c3cb900bdc7522dad.tar.gz misskey-94948583d2085e9a8469ed9c3cb900bdc7522dad.tar.bz2 misskey-94948583d2085e9a8469ed9c3cb900bdc7522dad.zip | |
Refactor: Rename pug --> about:docs
| -rw-r--r-- | gulpfile.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 78d19909ab..f56f6b1d27 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -37,7 +37,7 @@ const tsProject = ts.createProject('tsconfig.json'); gulp.task('build', [ 'build:js', 'build:ts', - 'build:pug', + 'build:about:docs', 'build:copy', 'build:client' ]); @@ -62,7 +62,7 @@ gulp.task('build:ts', () => .pipe(gulp.dest('./built/')) ); -gulp.task('build:pug', () => { +gulp.task('build:about:docs', () => { const pugs = glob.sync('./src/web/about/pages/**/*.pug'); const streams = pugs.map(file => { const page = file.replace('./src/web/about/pages/', '').replace('.pug', ''); |