File tree Expand file tree Collapse file tree 6 files changed +0
-10
lines changed
src/test/resources/fixtures Expand file tree Collapse file tree 6 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ task buildWebapp(type: NpxTask) {
81
81
args = ["build"]
82
82
inputs.file("Gruntfile.js")
83
83
inputs.dir("src")
84
- inputs.dir("node_modules")
85
84
outputs.dir("dist")
86
85
}
87
86
```
@@ -105,7 +104,6 @@ task buildWebapp(type: NpxTask) {
105
104
args = ["build"]
106
105
inputs.file("gulpfile.js")
107
106
inputs.dir("src")
108
- inputs.dir("node_modules")
109
107
outputs.dir("dist")
110
108
}
111
109
```
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ task buildBunx(type: BunxTask) {
13
13
command = " babel"
14
14
args = [" src" , " --out-dir" , " output-bunx" ]
15
15
inputs. dir(" javascript-project/src" )
16
- inputs. dir(" javascript-project/node_modules" )
17
16
outputs. dir(" javascript-project/output-bunx" )
18
17
}
19
18
@@ -22,7 +21,6 @@ task buildBun(type: BunTask) {
22
21
bunCommand = [" run" , " build" ]
23
22
args = [" --" , " --out-dir" , " output-bun" ]
24
23
inputs. dir(" javascript-project/src" )
25
- inputs. dir(" javascript-project/node_modules" )
26
24
outputs. dir(" javascript-project/output-bun" )
27
25
}
28
26
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ val testTaskUsingNpx = tasks.register<NpxTask>("testNpx") {
51
51
execOverrides {
52
52
standardOutput = System .out
53
53
}
54
- inputs.dir(" node_modules" )
55
54
inputs.file(" package.json" )
56
55
inputs.dir(" src" )
57
56
inputs.dir(" test" )
@@ -70,7 +69,6 @@ val testTaskUsingNpm = tasks.register<NpmTask>("testNpm") {
70
69
execOverrides {
71
70
standardOutput = System .out
72
71
}
73
- inputs.dir(" node_modules" )
74
72
inputs.file(" package.json" )
75
73
inputs.dir(" src" )
76
74
inputs.dir(" test" )
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ task buildNpx(type: NpxTask) {
11
11
command = " babel"
12
12
args = [" src" , " --out-dir" , " output-npx" ]
13
13
inputs. dir(" javascript-project/src" )
14
- inputs. dir(" javascript-project/node_modules" )
15
14
outputs. dir(" javascript-project/output-npx" )
16
15
}
17
16
@@ -20,7 +19,6 @@ task buildNpm(type: NpmTask) {
20
19
npmCommand = [" run" , " build" ]
21
20
args = [" --" , " --out-dir" , " output-npm" ]
22
21
inputs. dir(" javascript-project/src" )
23
- inputs. dir(" javascript-project/node_modules" )
24
22
outputs. dir(" javascript-project/output-npm" )
25
23
}
26
24
Original file line number Diff line number Diff line change @@ -11,6 +11,5 @@ task build(type: YarnTask) {
11
11
yarnCommand = [" run" , " build" ]
12
12
args = [" --out-dir" , " output" ]
13
13
inputs. dir(" javascript-project/src" )
14
- inputs. dir(" javascript-project/node_modules" )
15
14
outputs. dir(" javascript-project/output" )
16
15
}
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ task test(type: YarnTask) {
16
16
dependsOn yarn
17
17
yarnCommand = changeInputs ? [" run" , " test" ] : [" run" ]
18
18
args = changeInputs ? [] : [" test" ]
19
- inputs. dir(" node_modules" )
20
19
inputs. file(" package.json" )
21
20
inputs. dir(" src" )
22
21
inputs. dir(" test" )
You can’t perform that action at this time.
0 commit comments