File tree Expand file tree Collapse file tree 5 files changed +57
-9
lines changed Expand file tree Collapse file tree 5 files changed +57
-9
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " create-tsrouter-app" ,
3
+ "$schema" : " ../../node_modules/nx/schemas/project-schema.json" ,
4
+ "sourceRoot" : " cli/create-tsrouter-app/src" ,
5
+ "projectType" : " application" ,
6
+ "targets" : {
7
+ "build" : {
8
+ "executor" : " nx:run-commands" ,
9
+ "options" : {
10
+ "command" : " tsc -p cli/create-tsrouter-app/tsconfig.json"
11
+ },
12
+ "dependsOn" : [" ^build" ]
13
+ }
14
+ },
15
+ "implicitDependencies" : [" engine" , " templates" ]
16
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " ./node_modules/nx/schemas/nx-schema.json" ,
3
- "targetDependencies" : {
4
- "build" : [
5
- {
6
- "target" : " build" ,
7
- "projects" : " dependencies"
8
- }
9
- ]
3
+ "namedInputs" : {
4
+ "default" : [" {projectRoot}/**/*" ],
5
+ "production" : [" default" ]
6
+ },
7
+ "targetDefaults" : {
8
+ "build" : {
9
+ "inputs" : [" production" , " ^production" ],
10
+ "dependsOn" : [" ^build" ]
11
+ }
10
12
}
11
13
}
Original file line number Diff line number Diff line change 5
5
"type" : " module" ,
6
6
"scripts" : {
7
7
"cleanNodeModules" : " pnpm -r exec rm -rf node_modules" ,
8
- "build" : " nx affected --target=build" ,
8
+ "build" : " nx run-many --target=build" ,
9
9
"cipublish" : " node scripts/publish.js" ,
10
10
"test" : " nx run-many -t test"
11
11
},
36
36
"dependencies" : {
37
37
"@tanstack/config" : " ^0.16.2"
38
38
}
39
- }
39
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " engine" ,
3
+ "$schema" : " ../../node_modules/nx/schemas/project-schema.json" ,
4
+ "sourceRoot" : " packages/engine/src" ,
5
+ "projectType" : " library" ,
6
+ "targets" : {
7
+ "build" : {
8
+ "executor" : " nx:run-commands" ,
9
+ "options" : {
10
+ "command" : " tsc -p packages/engine/tsconfig.json"
11
+ },
12
+ "dependsOn" : [" ^build" ]
13
+ }
14
+ },
15
+ "implicitDependencies" : [" templates" ]
16
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " templates" ,
3
+ "$schema" : " ../../node_modules/nx/schemas/project-schema.json" ,
4
+ "sourceRoot" : " packages/templates/src" ,
5
+ "projectType" : " library" ,
6
+ "targets" : {
7
+ "build" : {
8
+ "executor" : " nx:run-commands" ,
9
+ "options" : {
10
+ "command" : " tsc -p packages/templates/tsconfig.json"
11
+ }
12
+ }
13
+ }
14
+ }
You can’t perform that action at this time.
0 commit comments