@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.js CHANGED
@@ -647,15 +647,15 @@ exports.ProjectPackageJson = class ProjectPackageJson {
647
647
  return [{
648
648
  title: "Installing dependencies using Yarn",
649
649
  skip: () => !this.reinstall,
650
- task: () => this.cliExeca.run(exports.PackageManager.YARN, ["install", "--production=false", verbose && "--verbose"].filter(Boolean), options).pipe(errorPipe())
650
+ task: () => this.cliExeca.run(exports.PackageManager.YARN, ["install", "--production=false", verbose && "--verbose", "--ignore-engines"].filter(Boolean), options).pipe(errorPipe())
651
651
  }, {
652
652
  title: "Add dependencies using Yarn",
653
653
  skip: () => !deps.length,
654
- task: () => this.cliExeca.run(exports.PackageManager.YARN, ["add", verbose && "--verbose", ...deps].filter(Boolean), options).pipe(errorPipe())
654
+ task: () => this.cliExeca.run(exports.PackageManager.YARN, ["add", verbose && "--verbose", "--ignore-engines", ...deps].filter(Boolean), options).pipe(errorPipe())
655
655
  }, {
656
656
  title: "Add devDependencies using Yarn",
657
657
  skip: () => !devDeps.length,
658
- task: () => this.cliExeca.run(exports.PackageManager.YARN, ["add", "-D", verbose && "--verbose", ...devDeps].filter(Boolean), options).pipe(errorPipe())
658
+ task: () => this.cliExeca.run(exports.PackageManager.YARN, ["add", "-D", verbose && "--verbose", "--ignore-engines", ...devDeps].filter(Boolean), options).pipe(errorPipe())
659
659
  }];
660
660
  }
661
661