diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-11-01 22:34:26 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-11-01 22:34:26 +0900 |
| commit | 92af4401e22749e726bce69c3bd02c627e7af7e6 (patch) | |
| tree | 4b56c10a3a3a1d0d1ae5c6733a2d6d2b172446d5 /gulpfile.ts | |
| parent | 11.35.0 (diff) | |
| download | misskey-92af4401e22749e726bce69c3bd02c627e7af7e6.tar.gz misskey-92af4401e22749e726bce69c3bd02c627e7af7e6.tar.bz2 misskey-92af4401e22749e726bce69c3bd02c627e7af7e6.zip | |
実行時にpackage.jsonを参照しないように (#5418)
* 実行時にpackage.jsonを参照しないように
* nodeinfo
* move meta.json
* add dummy
* lowercase
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 8b9820c0ce..00bd905566 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -96,7 +96,7 @@ gulp.task('cleanall', gulp.parallel('clean', cb => )); gulp.task('build:client:script', () => { - const client = require('./built/client/meta.json'); + const client = require('./built/meta.json'); return gulp.src(['./src/client/app/boot.js', './src/client/app/safe.js']) .pipe(replace('VERSION', JSON.stringify(client.version))) .pipe(replace('ENV', JSON.stringify(env))) |