diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-31 06:50:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-31 06:50:13 +0900 |
| commit | 0162ab96453847592691a65087495976af97a8fa (patch) | |
| tree | 03f2f3e7eae8210c7e9183bfb602fb51a01b6449 /gulpfile.ts | |
| parent | :v: (diff) | |
| download | misskey-0162ab96453847592691a65087495976af97a8fa.tar.gz misskey-0162ab96453847592691a65087495976af97a8fa.tar.bz2 misskey-0162ab96453847592691a65087495976af97a8fa.zip | |
Move src/web/about/pages --> docs/
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 144a3733db..9afbd5796c 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -90,9 +90,9 @@ gulp.task('build:about:docs', () => { const licenses = glob.sync('./node_modules/**/LICENSE*'); const licenseHtml = getLicenseHtml('./LICENSE'); const thirdpartyLicensesHtml = licenses.map(license => getLicenseSectionHtml(license)).join(''); - const pugs = glob.sync('./src/web/about/pages/**/*.pug'); + const pugs = glob.sync('./docs/**/*.pug'); const streams = pugs.map(file => { - const page = file.replace('./src/web/about/pages/', '').replace('.pug', ''); + const page = file.replace('./docs/', '').replace('.pug', ''); return gulp.src(file) .pipe(pug({ locals: Object.assign({ |