Skip to content
Snippets Groups Projects
Commit 6cca8577 authored by syuilo's avatar syuilo
Browse files

Clean up

parent 66dbfaae
No related branches found
Tags 13.8.0
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment