@reshapr/reshapr-cli 0.0.6 → 0.0.7

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.
@@ -87,7 +87,7 @@ async function downloadComposeFile(release, destPath) {
87
87
  }
88
88
  let content = await response.text();
89
89
  // Replace image tags with the requested release.
90
- content = content.replace(/(quay\.io\/reshapr\/[^:]+):[\w.-]+/g, `$1:${release}`);
90
+ content = content.replace(/(registry\.reshapr\.io\/reshapr\/[^:]+):[\w.-]+/g, `$1:${release}`);
91
91
  fs.mkdirSync(RESHAPR_DIR, { recursive: true, mode: 0o700 });
92
92
  fs.writeFileSync(destPath, content, { encoding: 'utf-8', mode: 0o600 });
93
93
  Logger.success(`Compose file saved to ${destPath}`);
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const CLI_VERSION = "0.0.6";
1
+ export const CLI_VERSION = "0.0.7";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reshapr/reshapr-cli",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "CLI for reshapr.io - The MCP Gateway for AI-Native API Access!",
5
5
  "type": "module",
6
6
  "main": "src/cli.ts",