diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-23 03:45:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-23 03:45:25 +0900 |
| commit | ea56d368e3fdfc2d9c2a61a9949a8e1788ed73e3 (patch) | |
| tree | 0e29f173e71fdbd29c95cc2fc121fb1a93db654a | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| parent | 7.4.1 (diff) | |
| download | misskey-ea56d368e3fdfc2d9c2a61a9949a8e1788ed73e3.tar.gz misskey-ea56d368e3fdfc2d9c2a61a9949a8e1788ed73e3.tar.bz2 misskey-ea56d368e3fdfc2d9c2a61a9949a8e1788ed73e3.zip | |
Merge pull request #2414 from syuilo/develop
7.4.1
| -rw-r--r-- | gulpfile.ts | 11 | ||||
| -rw-r--r-- | package.json | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 53185f5984..da111b2982 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -59,7 +59,16 @@ gulp.task('build:copy:views', () => gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views')) ); -gulp.task('build:copy', ['build:copy:views'], () => +// 互換性のため +gulp.task('build:copy:lang', () => + gulp.src(['./built/client/assets/*.*-*.js']) + .pipe(rename(path => { + path.basename = path.basename.replace(/\-(.*)$/, ''); + })) + .pipe(gulp.dest('./built/client/assets/')) +); + +gulp.task('build:copy', ['build:copy:views', 'build:copy:lang'], () => gulp.src([ './build/Release/crypto_key.node', './src/const.json', diff --git a/package.json b/package.json index a4cb798aef..517f49adf1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misskey", "author": "syuilo <i@syuilo.com>", - "version": "7.4.0", + "version": "7.4.1", "clientVersion": "1.0.8790", "codename": "nighthike", "main": "./built/index.js", |