Skip to content

Commit 539cbfb

Browse files
authored
fix: build script should now execute on all targets (#459)
* fix: build script should now execute on all targets * chore: revert back to pnpm workspace file
1 parent 707ff5d commit 539cbfb

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
2-
"extends": "../../../tsconfig.json",
32
"compilerOptions": {
43
"jsx": "react",
54
"noEmit": true,
65
"lib": ["DOM", "DOM.Iterable", "ES2020"]
7-
},
8-
"include": ["**/*.ts", "**/*.tsx", ".eslintrc.cjs", "rollup.config.js"]
6+
}
97
}

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
"test:lib:dev": "pnpm --filter \"./packages/**\" run test:lib:dev",
1616
"test:build": "nx affected --target=test:build",
1717
"test:types": "nx affected --target=test:types",
18-
"build": "nx affected --target=build",
19-
"build:all": "nx run-many --exclude=examples/** --target=build",
20-
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
18+
"build": "nx run-many --exclude=examples/** --target=build",
19+
"watch": "pnpm run build && nx watch --all -- pnpm run build",
2120
"dev": "pnpm run watch",
2221
"prettier": "prettier \"{packages,examples,scripts}/**/*.{md,js,jsx,cjs,ts,tsx,json,vue}\"",
2322
"prettier:write": "pnpm run prettier --write",
@@ -112,6 +111,11 @@
112111
"pnpm": {
113112
"patchedDependencies": {
114113
"@types/testing-library__jest-dom@5.14.5": "patches/@types__testing-library__jest-dom@5.14.5.patch"
114+
},
115+
"overrides": {
116+
"@tanstack/form-core": "workspace:*",
117+
"@tanstack/react-form": "workspace:*",
118+
"@tanstack/vue-form": "workspace:*"
115119
}
116120
}
117121
}

pnpm-lock.yaml

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)