Skip to content

Commit

Permalink
fix: serve npm command path specification (#101)
Browse files Browse the repository at this point in the history
When running the �[33mExit 127�[0m command the path is
not changed and it uses the default value ().

Fixes #98
  • Loading branch information
agazso committed May 20, 2021
1 parent 975748b commit edd4a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"serve": "http-serve -o ./build",
"serve": "http-serve ./build -o",
"lint": "eslint --fix \"src/**/*.ts\" \"src/**/*.tsx\" && prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint:check": "eslint \"src/**/*.ts\" \"src/**/*.tsx\" && prettier --check \"src/**/*.ts\" \"src/**/*.tsx\""
},
Expand Down

0 comments on commit edd4a2f

Please sign in to comment.