@runa-ai/runa-cli 0.5.28 → 0.5.30
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upgrade.d.ts","sourceRoot":"","sources":["../../src/commands/upgrade.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAeH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"upgrade.d.ts","sourceRoot":"","sources":["../../src/commands/upgrade.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAeH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA63BpC,eAAO,MAAM,cAAc,SA2DvB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -899,7 +899,7 @@ var CLI_VERSION, HAS_ADMIN_COMMAND;
|
|
|
899
899
|
var init_version = __esm({
|
|
900
900
|
"src/version.ts"() {
|
|
901
901
|
init_esm_shims();
|
|
902
|
-
CLI_VERSION = "0.5.
|
|
902
|
+
CLI_VERSION = "0.5.30";
|
|
903
903
|
HAS_ADMIN_COMMAND = false;
|
|
904
904
|
}
|
|
905
905
|
});
|
|
@@ -2973,7 +2973,7 @@ async function loadConfig(configPath, rootDir) {
|
|
|
2973
2973
|
try {
|
|
2974
2974
|
const content = await fs10.readFile(fullPath, "utf-8");
|
|
2975
2975
|
if (fullPath.endsWith(".yml") || fullPath.endsWith(".yaml")) {
|
|
2976
|
-
return yaml.load(content);
|
|
2976
|
+
return yaml.load(content, { schema: yaml.JSON_SCHEMA });
|
|
2977
2977
|
}
|
|
2978
2978
|
return JSON.parse(content);
|
|
2979
2979
|
} catch (error) {
|
|
@@ -2989,7 +2989,7 @@ async function loadIgnores(ignorePath, rootDir) {
|
|
|
2989
2989
|
const content = await fs10.readFile(fullPath, "utf-8");
|
|
2990
2990
|
let parsed;
|
|
2991
2991
|
if (fullPath.endsWith(".yml") || fullPath.endsWith(".yaml")) {
|
|
2992
|
-
parsed = yaml.load(content);
|
|
2992
|
+
parsed = yaml.load(content, { schema: yaml.JSON_SCHEMA });
|
|
2993
2993
|
} else {
|
|
2994
2994
|
parsed = JSON.parse(content);
|
|
2995
2995
|
}
|
|
@@ -33749,6 +33749,14 @@ function logModeInfo(logger15, options, categories) {
|
|
|
33749
33749
|
}
|
|
33750
33750
|
if (options.force) {
|
|
33751
33751
|
logger15.warn("Mode: force (overwrite all)");
|
|
33752
|
+
logger15.warn("");
|
|
33753
|
+
logger15.warn("\u26A0\uFE0F TIER2 files will also be overwritten:");
|
|
33754
|
+
logger15.warn(" - biome.json (linter config)");
|
|
33755
|
+
logger15.warn(" - runa.config.ts (project config)");
|
|
33756
|
+
logger15.warn(" - supabase/config.toml (local dev config)");
|
|
33757
|
+
logger15.warn(" - .npmrc (npm registry config)");
|
|
33758
|
+
logger15.warn("");
|
|
33759
|
+
logger15.warn("To preserve these files, add them to .runaignore");
|
|
33752
33760
|
}
|
|
33753
33761
|
if (options.keepLocal) {
|
|
33754
33762
|
logger15.info("Mode: keep-local (skip conflicts)");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../../src/internal/vuln-checker/config/loader.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEjE;;GAEG;AACH,wBAAsB,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,
|
|
1
|
+
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../../src/internal/vuln-checker/config/loader.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEjE;;GAEG;AACH,wBAAsB,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAmBhG;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CA8B5F"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runa-ai/runa-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.30",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "AI-powered DevOps CLI",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@dotenvx/dotenvx": "1.51.4",
|
|
29
|
-
"@runa-ai/runa": "^0.5.
|
|
29
|
+
"@runa-ai/runa": "^0.5.30",
|
|
30
30
|
"@runa-ai/runa-xstate-test-plugin": "^0.5.28",
|
|
31
31
|
"@types/node": "22.19.3",
|
|
32
32
|
"boxen": "7.1.1",
|