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) {
8181 args = ["build"]
8282 inputs.file("Gruntfile.js")
8383 inputs.dir("src")
84- inputs.dir("node_modules")
8584 outputs.dir("dist")
8685}
8786```
@@ -105,7 +104,6 @@ task buildWebapp(type: NpxTask) {
105104 args = ["build"]
106105 inputs.file("gulpfile.js")
107106 inputs.dir("src")
108- inputs.dir("node_modules")
109107 outputs.dir("dist")
110108}
111109```
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ task buildBunx(type: BunxTask) {
1313 command = " babel"
1414 args = [" src" , " --out-dir" , " output-bunx" ]
1515 inputs. dir(" javascript-project/src" )
16- inputs. dir(" javascript-project/node_modules" )
1716 outputs. dir(" javascript-project/output-bunx" )
1817}
1918
@@ -22,7 +21,6 @@ task buildBun(type: BunTask) {
2221 bunCommand = [" run" , " build" ]
2322 args = [" --" , " --out-dir" , " output-bun" ]
2423 inputs. dir(" javascript-project/src" )
25- inputs. dir(" javascript-project/node_modules" )
2624 outputs. dir(" javascript-project/output-bun" )
2725}
2826
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ val testTaskUsingNpx = tasks.register<NpxTask>("testNpx") {
5151 execOverrides {
5252 standardOutput = System .out
5353 }
54- inputs.dir(" node_modules" )
5554 inputs.file(" package.json" )
5655 inputs.dir(" src" )
5756 inputs.dir(" test" )
@@ -70,7 +69,6 @@ val testTaskUsingNpm = tasks.register<NpmTask>("testNpm") {
7069 execOverrides {
7170 standardOutput = System .out
7271 }
73- inputs.dir(" node_modules" )
7472 inputs.file(" package.json" )
7573 inputs.dir(" src" )
7674 inputs.dir(" test" )
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ task buildNpx(type: NpxTask) {
1111 command = " babel"
1212 args = [" src" , " --out-dir" , " output-npx" ]
1313 inputs. dir(" javascript-project/src" )
14- inputs. dir(" javascript-project/node_modules" )
1514 outputs. dir(" javascript-project/output-npx" )
1615}
1716
@@ -20,7 +19,6 @@ task buildNpm(type: NpmTask) {
2019 npmCommand = [" run" , " build" ]
2120 args = [" --" , " --out-dir" , " output-npm" ]
2221 inputs. dir(" javascript-project/src" )
23- inputs. dir(" javascript-project/node_modules" )
2422 outputs. dir(" javascript-project/output-npm" )
2523}
2624
Original file line number Diff line number Diff line change @@ -11,6 +11,5 @@ task build(type: YarnTask) {
1111 yarnCommand = [" run" , " build" ]
1212 args = [" --out-dir" , " output" ]
1313 inputs. dir(" javascript-project/src" )
14- inputs. dir(" javascript-project/node_modules" )
1514 outputs. dir(" javascript-project/output" )
1615}
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ task test(type: YarnTask) {
1616 dependsOn yarn
1717 yarnCommand = changeInputs ? [" run" , " test" ] : [" run" ]
1818 args = changeInputs ? [] : [" test" ]
19- inputs. dir(" node_modules" )
2019 inputs. file(" package.json" )
2120 inputs. dir(" src" )
2221 inputs. dir(" test" )
You can’t perform that action at this time.
0 commit comments