@insforge/cli 0.1.37 → 0.1.38
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/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1901,7 +1901,7 @@ import * as fs2 from "fs/promises";
|
|
|
1901
1901
|
import * as clack9 from "@clack/prompts";
|
|
1902
1902
|
import archiver from "archiver";
|
|
1903
1903
|
var POLL_INTERVAL_MS = 5e3;
|
|
1904
|
-
var POLL_TIMEOUT_MS =
|
|
1904
|
+
var POLL_TIMEOUT_MS = 3e5;
|
|
1905
1905
|
var EXCLUDE_PATTERNS = [
|
|
1906
1906
|
"node_modules",
|
|
1907
1907
|
".git",
|
|
@@ -1911,7 +1911,23 @@ var EXCLUDE_PATTERNS = [
|
|
|
1911
1911
|
"dist",
|
|
1912
1912
|
"build",
|
|
1913
1913
|
".DS_Store",
|
|
1914
|
-
".insforge"
|
|
1914
|
+
".insforge",
|
|
1915
|
+
// IDE and AI agent configs
|
|
1916
|
+
".claude",
|
|
1917
|
+
".agents",
|
|
1918
|
+
".augment",
|
|
1919
|
+
".kilocode",
|
|
1920
|
+
".kiro",
|
|
1921
|
+
".qoder",
|
|
1922
|
+
".qwen",
|
|
1923
|
+
".roo",
|
|
1924
|
+
".trae",
|
|
1925
|
+
".windsurf",
|
|
1926
|
+
".vercel",
|
|
1927
|
+
".turbo",
|
|
1928
|
+
".cache",
|
|
1929
|
+
"skills",
|
|
1930
|
+
"coverage"
|
|
1915
1931
|
];
|
|
1916
1932
|
function shouldExclude(name) {
|
|
1917
1933
|
const normalized = name.replace(/\\/g, "/");
|
|
@@ -2041,7 +2057,7 @@ function registerDeploymentsDeployCommand(deploymentsCmd2) {
|
|
|
2041
2057
|
outputJson({ id: result.deploymentId, status: result.deployment?.status ?? "building", timedOut: true });
|
|
2042
2058
|
} else {
|
|
2043
2059
|
clack9.log.info(`Deployment ID: ${result.deploymentId}`);
|
|
2044
|
-
clack9.log.warn("Deployment did not finish within
|
|
2060
|
+
clack9.log.warn("Deployment did not finish within 5 minutes.");
|
|
2045
2061
|
clack9.log.info(`Check status with: npx @insforge/cli deployments status ${result.deploymentId}`);
|
|
2046
2062
|
}
|
|
2047
2063
|
}
|