diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-25 21:28:06 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-25 21:28:06 +0900 |
| commit | 31006507c0dde7b4316efdc62f01717632993dbb (patch) | |
| tree | a2502f215b3df1b77989b9a97f56016a8c8e4d3d | |
| parent | サーバーへの接続が不安定な時にサインアウトしないよ... (diff) | |
| download | sharkey-31006507c0dde7b4316efdc62f01717632993dbb.tar.gz sharkey-31006507c0dde7b4316efdc62f01717632993dbb.tar.bz2 sharkey-31006507c0dde7b4316efdc62f01717632993dbb.zip | |
ビルドごとにバージョンを変えるのを廃止
| -rw-r--r-- | webpack.config.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webpack.config.ts b/webpack.config.ts index 325923084e..3822080574 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -5,7 +5,6 @@ import * as fs from 'fs'; import * as webpack from 'webpack'; import chalk from 'chalk'; -import rndstr from 'rndstr'; const { VueLoaderPlugin } = require('vue-loader'); const minifyHtml = require('html-minifier').minify; const WebpackOnBuildPlugin = require('on-build-webpack'); @@ -19,7 +18,7 @@ const constants = require('./src/const.json'); const locales = require('./locales'); const meta = require('./package.json'); -const version = `${meta.clientVersion}-${rndstr({ length: 8, chars: '0-9a-z' })}`; +const version = meta.clientVersion; const codename = meta.codename; declare var global: { |