@calo-design/cli 0.13.5 → 0.13.6
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/bin/backend.js +6 -1
- package/package.json +1 -1
package/bin/backend.js
CHANGED
|
@@ -253,7 +253,12 @@ async function cmdDeploy(args) {
|
|
|
253
253
|
if (out.migrations && out.migrations.ran) log(c.dim(" migrations applied"));
|
|
254
254
|
log(c.dim(` next: calo-design backend check`));
|
|
255
255
|
// Pair the deploy with its exact source — best-effort by contract, never fails the deploy.
|
|
256
|
-
|
|
256
|
+
// --note labels the checkpoint too (same contract as share/push).
|
|
257
|
+
await autoCheckpoint({
|
|
258
|
+
root,
|
|
259
|
+
note: flag(args, "note") || `backend deploy ${out.deployHash.slice(0, 8)}`,
|
|
260
|
+
publishedUrl: out.url,
|
|
261
|
+
});
|
|
257
262
|
} finally {
|
|
258
263
|
fs.rmSync(tgz, { force: true });
|
|
259
264
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calo-design/cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.6",
|
|
4
4
|
"description": "One-line setup for Calo design tooling: logs in with your Calo email and installs the calo-design skill + design-system packages. No GitHub account needed.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"calo-design": "bin/cli.js"
|