gipity 1.0.406 → 1.0.407

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.
@@ -190,6 +190,11 @@ GCC/Rust).
190
190
  if (res.data.autoMirrorSkipped) {
191
191
  console.error(dim(`Note: ${res.data.autoMirrorSkipped.reason}`));
192
192
  }
193
+ if (res.data.mirrorWarnings && res.data.mirrorWarnings.length > 0) {
194
+ console.error(dim(`Note: ${res.data.mirrorWarnings.length} project file(s) could not be mirrored into the sandbox and were skipped:`));
195
+ for (const w of res.data.mirrorWarnings)
196
+ console.error(dim(` - ${w}`));
197
+ }
193
198
  if (res.data.stdout)
194
199
  console.log(res.data.stdout);
195
200
  if (res.data.stderr)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gipity",
3
- "version": "1.0.406",
3
+ "version": "1.0.407",
4
4
  "description": "The full-stack platform tuned for AI agents. Database, storage, auth, functions, deploy, and drop-in kits - all agent-tuned. Pair with Claude Code or use standalone.",
5
5
  "bin": {
6
6
  "gipity": "dist/updater/shim.js",