Skip to content

Commit

Permalink
chore: improved the npm-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
danmaq committed Sep 4, 2023
1 parent 936b34a commit b67aa68
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
"bundle": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-static bundle",
"export": "react-static export",
"lint": "concurrently -m 1 \"npm:lint:*:check\"",
"lint:eslint:check": "eslint --cache --format codeframe \"$@\" \"./**/*\"",
"lint:eslint:check": "eslint --cache --format codeframe \"./**/*\"",
"lint:eslint:fix": "npm run lint:eslint:check --fix",
"lint:fix": "concurrently -m 1 \"npm:lint:*:fix\"",
"lint:prettier:check": "prettier --check \"./**/*\"",
"lint:prettier:fix": "prettier --write \"./**/*\"",
"lint:prettier:check": "npm run -s prettier -- -cu",
"lint:prettier:fix": "npm run -s prettier -- -uw",
"prepare": "path-exists .git && husky install || exit 0",
"prettier": "prettier --loglevel=warn \"./**/*\"",
"serve": "serve dist -p 3000 -s",
"start": "cross-env NODE_ENV=--openssl-legacy-provider react-static start"
},
Expand Down

0 comments on commit b67aa68

Please sign in to comment.