Skip to content

Commit 0132488

Browse files
committed
build: remove nx on main
1 parent 0339b36 commit 0132488

File tree

4 files changed

+8
-711
lines changed

4 files changed

+8
-711
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,3 @@ stats.html
4646
*.tgz
4747
eslint-results.sarif
4848
.tsup
49-
50-
51-
52-
.nx/cache
53-
.nx/workspace-data

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626
"author": "Rel1cx<[email protected]>",
2727
"type": "module",
2828
"scripts": {
29-
"build": "pnpm run update:all && nx run-many -t build --projects=\"packages/**\"",
30-
"build:all": "nx run-many -t build",
31-
"build:docs": "nx run-many -t build:docs --projects=\"packages/**\" && pnpm run update:readme",
32-
"build:pkgs": "pnpm -F \"./.pkgs/*\" run build",
29+
"build": "pnpm run update:all && pnpm run build:pkgs && pnpm run build:packages && pnpm run build:docs",
30+
"build:docs": "pnpm -r --filter \"./packages/*\" run build:docs",
31+
"build:packages": "pnpm -r --filter \"./packages/**\" run build",
32+
"build:pkgs": "pnpm -r --filter \"./.pkgs/*\" run build",
3333
"build:website": "pnpm run update:website && pnpm -F \"./apps/website\" run build",
3434
"format:check": "dprint check",
3535
"format:write": "dprint fmt",
3636
"inspect:deps": "skott -e .ts",
3737
"inspect:eslint-config": "eslint-config-inspector",
3838
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts && pnpm run lint:es && pnpm run lint:examples",
3939
"lint:deps": "skott -m file-tree -e .ts -s",
40-
"lint:es": "eslint . --max-warnings 10",
40+
"lint:es": "eslint . --max-warnings 20 --concurrency=auto",
4141
"lint:examples": "pnpm m -F \"./examples/*\" run lint",
4242
"lint:mdx": "mdxlint **/*.mdx -o",
4343
"lint:publish": "pnpm m run lint:publish",
@@ -83,7 +83,6 @@
8383
"lefthook": "^1.12.3",
8484
"markdownlint": "^0.38.0",
8585
"mdxlint": "^1.0.0",
86-
"nx": "^21.4.1",
8786
"publint": "^0.3.12",
8887
"react": "^19.1.1",
8988
"react-dom": "^19.1.1",
@@ -114,7 +113,6 @@
114113
"dprint",
115114
"esbuild",
116115
"lefthook",
117-
"nx",
118116
"sharp"
119117
],
120118
"overrides": {

0 commit comments

Comments
 (0)