No parallel

This commit is contained in:
Nathan Bierema 2022-11-07 08:46:10 -05:00
parent 0fefc251be
commit 79d4e3e0d6

View File

@ -20,9 +20,9 @@
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
"format:check": "prettier --check .", "format:check": "prettier --check .",
"build:all": "nx run-many --target=build --all --skip-nx-cache", "build:all": "nx run-many --target=build --all --skip-nx-cache --parallel=1",
"lint:all": "nx run-many --target=lint --all --skip-nx-cache", "lint:all": "nx run-many --target=lint --all --skip-nx-cache --parallel=1",
"test:all": "nx run-many --target=test --all --skip-nx-cache", "test:all": "nx run-many --target=test --all --skip-nx-cache --parallel=1",
"clean:all": "nx run-many --target=clean --all", "clean:all": "nx run-many --target=clean --all",
"release": "pnpm build:all && changeset publish" "release": "pnpm build:all && changeset publish"
}, },