@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 +1 -1
- package/src/commands/create.js +2 -1
package/package.json
CHANGED
package/src/commands/create.js
CHANGED
|
@@ -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:
|
|
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"));
|