@webhikers/cli 1.1.25 → 1.1.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webhikers/cli",
3
- "version": "1.1.25",
3
+ "version": "1.1.27",
4
4
  "description": "CLI for creating and deploying webhikers projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -162,7 +162,7 @@ export async function createCommand(name) {
162
162
  docker_compose_domains: [
163
163
  { name: "app", domain: `https://${domain}` },
164
164
  ],
165
- instant_deploy: true,
165
+ instant_deploy: false,
166
166
  });
167
167
  const appUuid = app.uuid;
168
168
 
@@ -196,6 +196,7 @@ export async function createCommand(name) {
196
196
  const guard = JSON.parse(readFileSync(guardPath, "utf-8"));
197
197
  guard.fileGuard = true;
198
198
  guard.syncGuard = true;
199
+ guard.lastPull = new Date().toISOString();
199
200
  writeFileSync(guardPath, JSON.stringify(guard, null, 2) + "\n", "utf-8");
200
201
  run(`git add .deploy.json .claude-guard.json && git commit -m "Enable guards + deploy config" && git push`, { cwd: projectDir });
201
202
  console.log(c.green(" ✓ .deploy.json + guards written"));