1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-25 12:08:30 +00:00

4.0.0-rc6.3

* Fixed: Emotes in locally echoed chat messages. (Update code for parsing emotes in locally echoed chat messages to find emote data in the new location.)
* Fixed: Automatic opting out from raids not working in pop-out chat.
This commit is contained in:
SirStendec 2018-07-18 17:06:14 -04:00
parent badb3f296e
commit 30ec9749da
4 changed files with 23 additions and 17 deletions

View file

@ -1,3 +1,4 @@
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.web.common.js');
const path = require('path');
@ -6,6 +7,8 @@ const CleanPlugin = require('clean-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const ManifestPlugin = require('webpack-manifest-plugin');
const commit_hash = require('child_process').execSync('git rev-parse HEAD').toString().trim();
/* global module __dirname */
const config = module.exports = merge(common, {
@ -39,6 +42,9 @@ const config = module.exports = merge(common, {
}
}
}),
new webpack.DefinePlugin({
__git_commit__: JSON.stringify(commit_hash)
}),
new ManifestPlugin({
basePath: 'babel/',
publicPath: 'babel/',