From 6cca8577c9d8fb29f83a794d8eed2f592ec618fc Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 12 Jan 2017 19:00:42 +0900 Subject: [PATCH] Clean up --- gulpfile.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index bc8c3569f..1f6299e40 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,