showpane 0.4.7 → 0.4.9
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
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: {
|
|
@@ -1177,6 +1177,8 @@ async function createProject(args) {
|
|
|
1177
1177
|
error(`Target directory already exists: ${dirName}/`);
|
|
1178
1178
|
process.exit(1);
|
|
1179
1179
|
}
|
|
1180
|
+
pathSetup = await maybeConfigureShellPath(config, options);
|
|
1181
|
+
writeShowpaneConfig(config);
|
|
1180
1182
|
console.log();
|
|
1181
1183
|
blue(`Setting up ${BOLD}${companyName}${RESET} portal as ${DIM}${dirName}/${RESET}`);
|
|
1182
1184
|
console.log();
|
|
@@ -1227,7 +1229,6 @@ AUTH_SECRET="${authSecret}"
|
|
|
1227
1229
|
deployMode: "local",
|
|
1228
1230
|
orgSlug: ""
|
|
1229
1231
|
});
|
|
1230
|
-
pathSetup = await maybeConfigureShellPath(config, options);
|
|
1231
1232
|
writeShowpaneConfig(config);
|
|
1232
1233
|
writeProjectState(
|
|
1233
1234
|
projectRoot,
|