Skip to content

Commit bd08a09

Browse files
authored
fix: yarn run scripts for Windows 11 (#237)
1 parent a9f13de commit bd08a09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@
8080
"license": "MIT",
8181
"main": "n/a",
8282
"scripts": {
83-
"build:pp": "NODE_OPTIONS='--no-experimental-fetch' gatsby build --prefix-paths",
84-
"build": "NODE_OPTIONS='--no-experimental-fetch' gatsby build",
83+
"build:pp": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build --prefix-paths",
84+
"build": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build",
8585
"clean": "gatsby clean && rm -r src/generated",
86-
"develop": "NODE_OPTIONS='--no-experimental-fetch' gatsby develop",
86+
"develop": "set NODE_OPTIONS=--no-experimental-fetch && gatsby develop",
8787
"format-check:js": "prettier '**/*.{js,jsx}' --check --ignore-path=.eslintignore",
8888
"format:js": "prettier '**/*.{js,jsx}' --write --ignore-path=.eslintignore",
8989
"generate-images": "node ./scripts/image-generation.js",

0 commit comments

Comments
 (0)