summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-01-12 19:00:42 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-01-12 19:00:42 +0900
commit6cca8577c9d8fb29f83a794d8eed2f592ec618fc (patch)
treeb74a377f7ba22a0d998df08b188a8fa4d9ab3b90
parentRefactor (diff)
downloadmisskey-6cca8577c9d8fb29f83a794d8eed2f592ec618fc.tar.gz
misskey-6cca8577c9d8fb29f83a794d8eed2f592ec618fc.tar.bz2
misskey-6cca8577c9d8fb29f83a794d8eed2f592ec618fc.zip
Clean up
-rw-r--r--gulpfile.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index bc8c3569f1..1f6299e403 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -194,13 +194,6 @@ gulp.task('build:client:scripts', async (done) => {
})
.transform(ls)
.transform(aliasify, aliasifyConfig)
-
- // スペースでインデントされてないとエラーが出る
- .transform(transformify((source, file) => {
- if (file.substr(-4) !== '.tag') return source;
- return source.replace(/\t/g, ' ');
- }))
-
.transform(transformify((source, file) => {
return source
.replace(/VERSION/g, `'${commit ? commit.hash : 'null'}'`)
@@ -216,7 +209,6 @@ gulp.task('build:client:scripts', async (done) => {
.replace(/CONFIG\.recaptcha\.siteKey/g, `'${config.recaptcha.siteKey}'`)
;
}))
-
.transform(riotify, {
type: 'livescript',
expr: false,