Tweak prettier (#201)

I don't think the wildcards and the {}s were being expanded as expected
in the 'scripts' section of package.json.

Also, I think the .prettierignore file is sufficient to ensure we only format
TS/JS/JSX code.
This commit is contained in:
Adam Chalmers
2023-07-27 12:49:53 -05:00
committed by GitHub
parent be7605cdef
commit 94918ccb2e

View File

@ -51,8 +51,8 @@
"test:cov": "jest --watchAll=false --coverage=true --forceExit", "test:cov": "jest --watchAll=false --coverage=true --forceExit",
"simpleserver:ci": "http-server ./public --cors -p 3000 &", "simpleserver:ci": "http-server ./public --cors -p 3000 &",
"simpleserver": "http-server ./public --cors -p 3000", "simpleserver": "http-server ./public --cors -p 3000",
"fmt": "prettier --write ./src/**/*.{ts,tsx,js} ./src/**/**/*.{ts,tsx,js} src/**/*.{ts,tsx,js}", "fmt": "prettier --write ./src",
"fmt-check": "prettier --check ./src/**/*.{ts,tsx,js} ./src/**/**/*.{ts,tsx,js} src/**/*.{ts,tsx,js}", "fmt-check": "prettier --check ./src",
"build:wasm": "yarn wasm-prep && (cd src/wasm-lib && wasm-pack build --target web --out-dir pkg) && cp src/wasm-lib/pkg/wasm_lib_bg.wasm public && yarn fmt && yarn remove-importmeta", "build:wasm": "yarn wasm-prep && (cd src/wasm-lib && wasm-pack build --target web --out-dir pkg) && cp src/wasm-lib/pkg/wasm_lib_bg.wasm public && yarn fmt && yarn remove-importmeta",
"remove-importmeta": "sed -i 's/import.meta.url//g' \"./src/wasm-lib/pkg/wasm_lib.js\"; sed -i '' 's/import.meta.url//g' \"./src/wasm-lib/pkg/wasm_lib.js\" || echo \"sed for both mac and linux\"", "remove-importmeta": "sed -i 's/import.meta.url//g' \"./src/wasm-lib/pkg/wasm_lib.js\"; sed -i '' 's/import.meta.url//g' \"./src/wasm-lib/pkg/wasm_lib.js\" || echo \"sed for both mac and linux\"",
"wasm-prep": "rm -rf src/wasm-lib/pkg && mkdir src/wasm-lib/pkg", "wasm-prep": "rm -rf src/wasm-lib/pkg && mkdir src/wasm-lib/pkg",