@koda-sl/baker-cli 0.133.0 → 0.133.1
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/dist/cli.js
CHANGED
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
generateCatalog,
|
|
24
24
|
imageProfileFor,
|
|
25
25
|
isPersistedAssetRef,
|
|
26
|
+
looksLikeHttpUrl,
|
|
26
27
|
parseRefExpr,
|
|
27
28
|
platformFormats,
|
|
28
29
|
requireCredentialsFromEnv,
|
|
@@ -33,7 +34,7 @@ import {
|
|
|
33
34
|
toModelSafeImage,
|
|
34
35
|
ulid,
|
|
35
36
|
validateCanvasDeep
|
|
36
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-Q4UI5JZN.js";
|
|
37
38
|
import {
|
|
38
39
|
csvOrJson,
|
|
39
40
|
daysAgoIso,
|
|
@@ -14862,7 +14863,7 @@ function resolveNode(node, baseDir) {
|
|
|
14862
14863
|
return node;
|
|
14863
14864
|
}
|
|
14864
14865
|
function isResolvableRelative(value) {
|
|
14865
|
-
return typeof value === "string" && value.length > 0 && !value.includes("[TODO") && !path3.isAbsolute(value);
|
|
14866
|
+
return typeof value === "string" && value.length > 0 && !value.includes("[TODO") && !looksLikeHttpUrl(value) && !path3.isAbsolute(value);
|
|
14866
14867
|
}
|
|
14867
14868
|
|
|
14868
14869
|
// src/commands/canvas/source-version.ts
|