1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

rename: dist => build, releases => dist

This commit is contained in:
Kyle Spearrin
2017-11-16 11:23:53 -05:00
parent cd4c2d6d10
commit 4d3a471049
3 changed files with 14 additions and 14 deletions

View File

@@ -60,7 +60,7 @@ module.exports = {
},
plugins: [
new CleanWebpackPlugin([
path.resolve(__dirname, 'dist/*')
path.resolve(__dirname, 'build/*')
]),
new webpack.optimize.CommonsChunkPlugin({
name: 'popup/vendor',
@@ -100,6 +100,6 @@ module.exports = {
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
path: path.resolve(__dirname, 'build')
}
};