@rebasepro/cli 0.12.0 → 0.12.1-canary.gdfba2a1

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/index.es.js CHANGED
@@ -1461,9 +1461,10 @@ async function replacePlaceholders(options) {
1461
1461
  versionToUse = stdout.trim();
1462
1462
  } catch {
1463
1463
  try {
1464
+ const tag = cliVersion.includes("canary") ? "canary" : "latest";
1464
1465
  const { stdout } = await execa(viewBin, [
1465
1466
  "view",
1466
- `${pkgName}@${cliVersion.includes("canary") ? "canary" : "latest"}`,
1467
+ `${pkgName}@${tag}`,
1467
1468
  "version"
1468
1469
  ]);
1469
1470
  if (!stdout.trim()) throw new Error("Not found");
@@ -2084,7 +2085,7 @@ var REMOVED_APP_TYPES = {
2084
2085
  mobile: "mobile apps are no longer declared in the manifest — nothing consumed this type. Remove the entry"
2085
2086
  };
2086
2087
  /** Reserved because they name things in URLs and CLI output. */
2087
- var RESERVED_APP_NAMES = new Set([
2088
+ var RESERVED_APP_NAMES = /* @__PURE__ */ new Set([
2088
2089
  "api",
2089
2090
  "health",
2090
2091
  "metrics",
@@ -3081,7 +3082,7 @@ ${chalk.green.bold("Description")}
3081
3082
  */
3082
3083
  var DEFAULT_BUNDLE_DIR = "dist-bundle";
3083
3084
  /** Packages whose presence means the bundle cannot run on a stock runtime image. */
3084
- var KNOWN_NATIVE_PACKAGES = new Set([
3085
+ var KNOWN_NATIVE_PACKAGES = /* @__PURE__ */ new Set([
3085
3086
  "sharp",
3086
3087
  "canvas",
3087
3088
  "bcrypt",
@@ -3097,7 +3098,7 @@ var KNOWN_NATIVE_PACKAGES = new Set([
3097
3098
  "pg-native"
3098
3099
  ]);
3099
3100
  /** Dependencies supplied by the runtime image itself, not by the bundle. */
3100
- var RUNTIME_PROVIDED = new Set([
3101
+ var RUNTIME_PROVIDED = /* @__PURE__ */ new Set([
3101
3102
  "@rebasepro/server",
3102
3103
  "@rebasepro/types",
3103
3104
  "@rebasepro/client",