forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
41 lines (41 loc) · 1.21 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "root",
"$schema": "./node_modules/nx/schemas/project-schema.json",
"sourceRoot": "./",
"targets": {
"rollup": {
"command": "rollup --config rollup.config.js",
"outputs": [
"{workspaceRoot}/packages/*/build/**/*(.cjs|.mjs|.js)*",
"{workspaceRoot}/packages/*/build/stats*",
"{workspaceRoot}/packages/*/build/**/*.svelte"
],
"inputs": ["default"]
},
"build": {
"command": "echo \" @tanstack/query > All packages built! 📦\"",
"dependsOn": ["rollup", "^build:types", "^build"]
},
"test:build": {
"executor": "nx:run-commands",
"options": {
"commands": ["bundlewatch", "pnpm run validatePackages"],
"parallel": true
}
}
},
"implicitDependencies": [
"@tanstack/eslint-plugin-query",
"@tanstack/query-async-storage-persister",
"@tanstack/query-broadcast-client-experimental",
"@tanstack/query-core",
"@tanstack/query-persist-client-core",
"@tanstack/query-sync-storage-persister",
"@tanstack/react-query",
"@tanstack/react-query-devtools",
"@tanstack/react-query-persist-client",
"@tanstack/solid-query",
"@rilldata/svelte-query",
"@tanstack/vue-query"
]
}