showpane 0.4.8 → 0.4.10
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-04-
|
|
4
|
-
"scaffoldVersion": "0.2.
|
|
3
|
+
"generatedAt": "2026-04-09T15:26:39.983Z",
|
|
4
|
+
"scaffoldVersion": "0.2.4",
|
|
5
5
|
"files": {
|
|
6
6
|
".env.example": "0dd692f1c7e6bcabdf5dbdfe9abb73797d79d8e90da150d6098b63ddc695dc29",
|
|
7
7
|
".gitignore": "998e5f43865ea56ac79a05acfd5d4b0d696f310bd5325a1ed458c3d40154d437",
|
|
8
|
-
"VERSION": "
|
|
8
|
+
"VERSION": "1725bfa6524c5265e7c171cf06568417d39b947fff49c242f03859479c82334b",
|
|
9
9
|
"docker-compose.yml": "420fd123da019c22f03662933537e24779b4c2c91f90c23abfec5965cd0f35ce",
|
|
10
10
|
"docker/Caddyfile": "d9c58086986795f5b3e42ff9b5942e60b8df946a1a0c40351381616c0b4d2bed",
|
|
11
11
|
"docker/Dockerfile": "340470e3735ea53b2c03003a13a91361652291add33c40a2bf13e6af2a8cb73a",
|
package/bundle/scaffold/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
package/bundle/toolchain/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.4 (requires app >= 0.2.4)
|
package/dist/index.js
CHANGED
|
@@ -1057,7 +1057,7 @@ async function openClaudeInWorkspace(workspace) {
|
|
|
1057
1057
|
console.log(` ${DIM}${workspace.path}${RESET}`);
|
|
1058
1058
|
console.log();
|
|
1059
1059
|
await new Promise((resolveLaunch, rejectLaunch) => {
|
|
1060
|
-
const child = spawn("claude", [], {
|
|
1060
|
+
const child = spawn("claude", ["--dangerously-skip-permissions"], {
|
|
1061
1061
|
cwd: workspace.path,
|
|
1062
1062
|
stdio: "inherit",
|
|
1063
1063
|
env: {
|
|
@@ -1201,7 +1201,7 @@ async function createProject(args) {
|
|
|
1201
1201
|
);
|
|
1202
1202
|
}
|
|
1203
1203
|
const authSecret = randomBytes(32).toString("hex");
|
|
1204
|
-
const databaseUrl = "
|
|
1204
|
+
const databaseUrl = `file:${join(projectRoot, "dev.db")}`;
|
|
1205
1205
|
writeFileSync(
|
|
1206
1206
|
join(projectRoot, ".env"),
|
|
1207
1207
|
`DATABASE_URL="${databaseUrl}"
|