Skip to content

Commit

Permalink
chore: fix scripts to run on Windows (#398)
Browse files Browse the repository at this point in the history
Co-authored-by: Erez Rokah <erezrokah@users.noreply.github.com>
  • Loading branch information
XhmikosR and erezrokah authored Jan 10, 2022
1 parent 3293709 commit cd82ade
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 @@ -18,10 +18,10 @@
"test": "run-s format test:dev",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "./bin/run_e.js format:check:lint format:fix:lint",
"format:check-fix:lint": "node ./bin/run_e.js format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "./bin/run_e.js format:check:prettier format:fix:prettier",
"format:check-fix:prettier": "node ./bin/run_e.js format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"test:dev": "run-s test:dev:*",
Expand Down

0 comments on commit cd82ade

Please sign in to comment.