Skip to content

Commit

Permalink
chore: fix faucet yarn scripts after yarn v4 upgrade (anoma#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
emccorson committed Dec 11, 2023
1 parent d7cb206 commit 3b9fe68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/faucet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"scripts": {
"start": "webpack-dev-server",
"start:proxy": "node ./scripts/startProxy.js",
"dev": "export NODE_ENV=development && yarn start",
"dev:proxy": "export REACT_APP_PROXY=true; ./scripts/start-proxy.sh; yarn dev",
"build": "export NODE_ENV=production && webpack",
"dev": "NODE_ENV=development yarn start",
"dev:proxy": "./scripts/start-proxy.sh; REACT_APP_PROXY=true yarn dev",
"build": "NODE_ENV=production webpack-cli",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "yarn lint -- --fix"
},
Expand Down

0 comments on commit 3b9fe68

Please sign in to comment.