Added 's' to the standalone version string

This commit is contained in:
n1474335 2018-03-01 20:32:09 +00:00
parent 372b2378a8
commit 328142dac7
2 changed files with 11 additions and 6 deletions

View file

@ -258,12 +258,14 @@ module.exports = function (grunt) {
path: __dirname + "/build/prod"
},
plugins: [
new webpack.DefinePlugin(BUILD_CONSTANTS),
new webpack.DefinePlugin(Object.assign({}, BUILD_CONSTANTS, {
INLINE: "true"
})),
new HtmlWebpackPlugin({
filename: "cyberchef.htm",
template: "./src/web/html/index.html",
compileTime: compileTime,
version: pkg.version,
version: pkg.version + "s",
inline: true,
minify: {
removeComments: true,