-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pnpm for running scripts instead of nx (#1770)
* Use pnpm for running scripts instead of nx * Fix typos
- Loading branch information
1 parent
fdce076
commit 41fae27
Showing
6 changed files
with
6 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,23 @@ | |
"@changesets/cli": "^2.27.8", | ||
"@eslint/compat": "^1.1.1", | ||
"@eslint/js": "^8.57.1", | ||
"@nrwl/nx-cloud": "^19.1.0", | ||
"eslint": "^8.57.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-jest": "^28.8.3", | ||
"eslint-plugin-react": "^7.36.1", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"jest": "^29.7.0", | ||
"nx": "^19.7.3", | ||
"prettier": "3.3.3", | ||
"typescript": "~5.5.4", | ||
"typescript-eslint": "^8.6.0" | ||
}, | ||
"scripts": { | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"build:all": "nx run-many --target=build --all --parallel=1", | ||
"lint:all": "nx run-many --target=lint --all --parallel=1", | ||
"test:all": "nx run-many --target=test --all --parallel=1", | ||
"clean:all": "nx run-many --target=clean --all --parallel=1", | ||
"build:all": "pnpm --recursive run build", | ||
"lint:all": "pnpm --recursive run lint", | ||
"test:all": "pnpm --recursive run test", | ||
"clean:all": "pnpm --recursive run clean", | ||
"release": "pnpm build:all && pnpm publish -r" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.