Skip to content

Commit

Permalink
fix: yarn run scripts for Windows 11 (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rukki13 authored Apr 19, 2024
1 parent a9f13de commit bd08a09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
"license": "MIT",
"main": "n/a",
"scripts": {
"build:pp": "NODE_OPTIONS='--no-experimental-fetch' gatsby build --prefix-paths",
"build": "NODE_OPTIONS='--no-experimental-fetch' gatsby build",
"build:pp": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build --prefix-paths",
"build": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build",
"clean": "gatsby clean && rm -r src/generated",
"develop": "NODE_OPTIONS='--no-experimental-fetch' gatsby develop",
"develop": "set NODE_OPTIONS=--no-experimental-fetch && gatsby develop",
"format-check:js": "prettier '**/*.{js,jsx}' --check --ignore-path=.eslintignore",
"format:js": "prettier '**/*.{js,jsx}' --write --ignore-path=.eslintignore",
"generate-images": "node ./scripts/image-generation.js",
Expand Down

0 comments on commit bd08a09

Please sign in to comment.