Skip to content

Commit

Permalink
fix: build scripts failing if no build/www dir
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 6, 2024
1 parent 465a6d8 commit 87eed6e
Showing 1 changed file with 2 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 -r build/www/* && npx webpack --mode=development",
"watch": "rm -r build/www/* && npx webpack --mode=development --watch",
"build-dev": "rm -rf build/www/* && npx webpack --mode=development",
"watch": "rm -rf build/www/* && npx webpack --mode=development --watch",
"gobuild": "./buildandrun.sh",
"lint": "npx eslint src/js",
"lint-fix": "npx eslint --fix src/js",
Expand Down

0 comments on commit 87eed6e

Please sign in to comment.