Commit a054a73b authored by Muhammadali's avatar Muhammadali

update-

parent e455d1bd
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "4.5.6", "version": "4.5.7",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
"dev": "webpack serve --mode=development", "dev": "webpack serve --mode=development",
"build": "webpack", "build:dev": "webpack --env=development --watch ",
"start": "webpack --watch" "build:prod": "webpack --env=production"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
......
...@@ -3,11 +3,17 @@ ...@@ -3,11 +3,17 @@
const path = require('path'); const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = { //env.production
module.exports = (env) => {
console.log('TYPE: ', env?.production ? 'production' : 'development');
return {
entry: path.join(__dirname, 'src', 'index.js'), entry: path.join(__dirname, 'src', 'index.js'),
mode: 'development', mode: 'development',
output: { output: {
path: path.resolve(__dirname, 'dist'), path: env?.production
? path.resolve(__dirname, 'prod')
: path.resolve(__dirname, 'dist'),
}, },
// devServer: { // devServer: {
// port: 80, // port: 80,
...@@ -49,4 +55,5 @@ module.exports = { ...@@ -49,4 +55,5 @@ module.exports = {
template: path.join(__dirname, 'src', 'index.html'), template: path.join(__dirname, 'src', 'index.html'),
}), }),
], ],
};
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment