@coana-tech/cli 14.3.11 → 14.4.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/cli.js +11 -3
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -91394,7 +91394,7 @@ var init_yarn_fixing_manager = __esm({
|
|
|
91394
91394
|
async actuallyRunInstall(specificPackagesArgs, workspacePath) {
|
|
91395
91395
|
const yarnInstruction = specificPackagesArgs?.length ? "add" : "install";
|
|
91396
91396
|
const yarnType = this.yarnType;
|
|
91397
|
-
const cmdWithoutSpecificPackages = yarnType === "classic" ? cmdt`yarn ${yarnInstruction} --ignore-scripts --noninteractive` : cmdt`yarn ${yarnInstruction} --mode=skip-build`;
|
|
91397
|
+
const cmdWithoutSpecificPackages = yarnType === "classic" ? cmdt`yarn ${yarnInstruction} --ignore-scripts --noninteractive` : cmdt`yarn ${yarnInstruction} --mode=skip-build --no-frozen-lockfile`;
|
|
91398
91398
|
const env = process.env;
|
|
91399
91399
|
if (yarnType === "berry") {
|
|
91400
91400
|
env.YARN_ENABLE_SCRIPTS = "false";
|
|
@@ -91405,6 +91405,10 @@ var init_yarn_fixing_manager = __esm({
|
|
|
91405
91405
|
const installDir = (0, import_path4.resolve)(this.rootDir, this.subprojectPath, workspacePath ?? ".");
|
|
91406
91406
|
const installResult = await this.runYarnCommand(installationCommand, installDir, { env });
|
|
91407
91407
|
if (installResult.error) {
|
|
91408
|
+
logger.info(`Failed to install packages: ${installResult.error.message}`);
|
|
91409
|
+
logger.info(`stdout`, installResult.stdout);
|
|
91410
|
+
logger.info(`stderr`, installResult.stderr);
|
|
91411
|
+
logger.info("yarn version", await runCommandResolveStdOut("yarn -v", installDir));
|
|
91408
91412
|
throw new Error(`Failed to install packages: ${installResult.error.message}`);
|
|
91409
91413
|
}
|
|
91410
91414
|
}
|
|
@@ -140317,7 +140321,11 @@ function shouldIgnoreDir(dir) {
|
|
|
140317
140321
|
".venv",
|
|
140318
140322
|
"venv",
|
|
140319
140323
|
".next",
|
|
140320
|
-
"obj"
|
|
140324
|
+
"obj",
|
|
140325
|
+
".yarn",
|
|
140326
|
+
// created by the yarn package manager
|
|
140327
|
+
".bingo"
|
|
140328
|
+
// created by the Bingo package manager, which can be used with Go projects
|
|
140321
140329
|
];
|
|
140322
140330
|
return dirsToIgnore.includes(dir);
|
|
140323
140331
|
}
|
|
@@ -207888,7 +207896,7 @@ var require_version = __commonJS({
|
|
|
207888
207896
|
"use strict";
|
|
207889
207897
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
207890
207898
|
exports2.version = void 0;
|
|
207891
|
-
exports2.version = "14.
|
|
207899
|
+
exports2.version = "14.4.0";
|
|
207892
207900
|
}
|
|
207893
207901
|
});
|
|
207894
207902
|
|