Skip to content

Commit

Permalink
Merge pull request #224 from bento-platform/chore/cleanup-dist
Browse files Browse the repository at this point in the history
chore: configure webpack to clean up dist/
  • Loading branch information
davidlougheed authored Nov 15, 2024
2 parents f84e5a2 + 52f0bcf commit 50ea993
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"build": "npx webpack --mode=production",
"build-dev": "rm -rf dist/* && npx webpack --mode=development",
"watch": "rm -rf dist/* && npx webpack --mode=development --watch",
"build-dev": "npx webpack --mode=development",
"watch": "npx webpack --mode=development --watch",
"start": "webpack serve --mode development --no-web-socket-server",
"lint": "npx eslint src/js",
"lint-fix": "npx eslint --fix src/js",
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const config = {
publicPath: '/',
// filename: "js/bundle.js",
filename: 'js/[name][chunkhash].js',
clean: true,
},
module: {
rules: [
Expand Down

0 comments on commit 50ea993

Please sign in to comment.