File tree 2 files changed +27
-2
lines changed
2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -32,3 +32,5 @@ npm-debug.log*
32
32
node_modules
33
33
34
34
.vscode
35
+
36
+ .nx /
Original file line number Diff line number Diff line change 7
7
}
8
8
}
9
9
},
10
+ "namedInputs" : {
11
+ "default" : [
12
+ " {workspaceRoot}/pnpm-lock.yaml" ,
13
+ " {workspaceRoot}/tsconfig.shared.json" ,
14
+ " {projectRoot}/package.json" ,
15
+ " {projectRoot}/tsconfig.json"
16
+ ]
17
+ },
10
18
"targetDefaults" : {
11
19
"build" : {
12
20
"dependsOn" : [" ^build" ],
21
+ "inputs" : [
22
+ " default" ,
23
+ " {workspaceRoot}/tsup.config.ts" ,
24
+ " {projectRoot}/index.{js,ts}" ,
25
+ " {projectRoot}/index.d.ts" ,
26
+ " {projectRoot}/lib/**" ,
27
+ " {projectRoot}/rollup.config.cjs"
28
+ ],
13
29
"outputs" : [" {projectRoot}/dist" ]
14
30
},
15
31
"test" : {
16
- "dependsOn" : [" ^test" ]
32
+ "inputs" : [
33
+ " default" ,
34
+ " {projectRoot}/test.ts" ,
35
+ " {projectRoot}/test/**" ,
36
+ " {projectRoot}/types.ts"
37
+ ],
38
+ "dependsOn" : [" build" ]
17
39
},
18
40
"last-checks" : {
19
- "dependsOn" : [" ^last-checks" ]
41
+ "inputs" : [" default" , " {projectRoot}/test.ts" ],
42
+ "dependsOn" : [" build" , " ^last-checks" ]
20
43
}
21
44
}
22
45
}
You can’t perform that action at this time.
0 commit comments