Skip to content
Snippets Groups Projects
Unverified Commit 31006507 authored by syuilo's avatar syuilo
Browse files

ビルドごとにバージョンを変えるのを廃止

parent 9ca6a6bf
No related merge requests found
......@@ -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: {
......
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