showpane 0.4.16 → 0.4.17
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-04-
|
|
3
|
+
"generatedAt": "2026-04-11T22:10:49.959Z",
|
|
4
4
|
"scaffoldVersion": "0.2.6",
|
|
5
5
|
"files": {
|
|
6
6
|
".env.example": "ed105f2bdcd1888a98181d55e3c9f7d6eff3ae9c3e2366c2e777a12e3caddfa7",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"postcss.config.js": "fa650b380adfabb151a0b352f7135e107e6352345f899060f1c5c231228f94bf",
|
|
13
13
|
"prisma.config.ts": "36f56fd74eae70632e484443e38d08665158d72d5c978dc456651d8d5e1a636e",
|
|
14
14
|
"prisma/schema.local.prisma": "f5d6f3cb17d6d229f46ef82eef7c0ff4261596924f0173fef075ac394f423073",
|
|
15
|
-
"prisma/seed.ts": "
|
|
15
|
+
"prisma/seed.ts": "98f7d5fd97ce2ff66bdf060ccb6695416d18ac983672b256d5d95d315ccee6e5",
|
|
16
16
|
"public/example-avatar.svg": "0edeb0d3fbefa89cc27ffe6564d20e3ee0fd073cb6d9f2a025248ef3b3f277fd",
|
|
17
17
|
"public/example-logo.svg": "bc5cd933aff2a17698dee66a7b4ea940ad12238e9d813474d643b459b1e8d6da",
|
|
18
18
|
"public/robots.txt": "331ea9090db0c9f6f597bd9840fd5b171830f6e0b3ba1cb24dfa91f0c95aedc1",
|
|
@@ -33,6 +33,7 @@ async function main() {
|
|
|
33
33
|
const contactName = process.env.SHOWPANE_CONTACT_NAME?.trim() || null;
|
|
34
34
|
const contactEmail = process.env.SHOWPANE_CONTACT_EMAIL?.trim() || null;
|
|
35
35
|
const websiteUrl = normalizeWebsiteUrl(process.env.SHOWPANE_WEBSITE_URL);
|
|
36
|
+
const contactTitle = "Point of contact";
|
|
36
37
|
|
|
37
38
|
const org = await prisma.organization.upsert({
|
|
38
39
|
where: { slug: organizationSlug },
|
|
@@ -41,7 +42,7 @@ async function main() {
|
|
|
41
42
|
name: organizationName,
|
|
42
43
|
slug: organizationSlug,
|
|
43
44
|
contactName,
|
|
44
|
-
contactTitle
|
|
45
|
+
contactTitle,
|
|
45
46
|
contactEmail,
|
|
46
47
|
supportEmail: contactEmail,
|
|
47
48
|
websiteUrl,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.17
|
package/dist/index.js
CHANGED
|
@@ -314,7 +314,7 @@ async function maybeConfigureShellPath(config, options) {
|
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
316
|
const answer = await ask(
|
|
317
|
-
` ${BOLD}
|
|
317
|
+
` ${DIM}(recommended)${RESET} ${BOLD}Want me to add Showpane to your PATH so \`showpane\` works in new terminals?${RESET} ${DIM}[Y/n]${RESET} `
|
|
318
318
|
);
|
|
319
319
|
if (answer && !["y", "yes"].includes(answer.toLowerCase())) {
|
|
320
320
|
config.shellPathPrompted = true;
|
|
@@ -1258,7 +1258,7 @@ async function createProject(args) {
|
|
|
1258
1258
|
console.log();
|
|
1259
1259
|
}
|
|
1260
1260
|
const contactName = options.yes || !process.stdin.isTTY || !process.stdout.isTTY ? "" : await ask(` ${BOLD}What's your full name?${RESET} `);
|
|
1261
|
-
const contactEmail = options.yes || !process.stdin.isTTY || !process.stdout.isTTY ? "" : await ask(` ${BOLD}What's your email?${RESET} `);
|
|
1261
|
+
const contactEmail = options.yes || !process.stdin.isTTY || !process.stdout.isTTY ? "" : await ask(` ${BOLD}What's your work email?${RESET} `);
|
|
1262
1262
|
const websiteUrl = options.yes || !process.stdin.isTTY || !process.stdout.isTTY ? "" : await ask(` ${BOLD}What's your company website or domain?${RESET} `);
|
|
1263
1263
|
const slug = toSlug(companyName);
|
|
1264
1264
|
const dirName = `showpane-${slug}`;
|