@tsed/cli-core 3.13.3 → 3.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.modern.js
CHANGED
|
@@ -613,15 +613,15 @@ let ProjectPackageJson = class ProjectPackageJson {
|
|
|
613
613
|
return [{
|
|
614
614
|
title: "Installing dependencies using Yarn",
|
|
615
615
|
skip: () => !this.reinstall,
|
|
616
|
-
task: () => this.cliExeca.run(PackageManager.YARN, ["install", "--production=false", verbose && "--verbose"].filter(Boolean), options).pipe(errorPipe())
|
|
616
|
+
task: () => this.cliExeca.run(PackageManager.YARN, ["install", "--production=false", verbose && "--verbose", "--ignore-engines"].filter(Boolean), options).pipe(errorPipe())
|
|
617
617
|
}, {
|
|
618
618
|
title: "Add dependencies using Yarn",
|
|
619
619
|
skip: () => !deps.length,
|
|
620
|
-
task: () => this.cliExeca.run(PackageManager.YARN, ["add", verbose && "--verbose", ...deps].filter(Boolean), options).pipe(errorPipe())
|
|
620
|
+
task: () => this.cliExeca.run(PackageManager.YARN, ["add", verbose && "--verbose", "--ignore-engines", ...deps].filter(Boolean), options).pipe(errorPipe())
|
|
621
621
|
}, {
|
|
622
622
|
title: "Add devDependencies using Yarn",
|
|
623
623
|
skip: () => !devDeps.length,
|
|
624
|
-
task: () => this.cliExeca.run(PackageManager.YARN, ["add", "-D", verbose && "--verbose", ...devDeps].filter(Boolean), options).pipe(errorPipe())
|
|
624
|
+
task: () => this.cliExeca.run(PackageManager.YARN, ["add", "-D", verbose && "--verbose", "--ignore-engines", ...devDeps].filter(Boolean), options).pipe(errorPipe())
|
|
625
625
|
}];
|
|
626
626
|
}
|
|
627
627
|
|