create-landing-app 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/dist/prompts.js +2 -12
  2. package/package.json +1 -1
package/dist/prompts.js CHANGED
@@ -1,4 +1,4 @@
1
- import { text, select, confirm, isCancel } from "@clack/prompts";
1
+ import { text, confirm, isCancel } from "@clack/prompts";
2
2
  export async function runPrompts() {
3
3
  const projectName = await text({
4
4
  message: "Project name?",
@@ -7,16 +7,6 @@ export async function runPrompts() {
7
7
  });
8
8
  if (isCancel(projectName))
9
9
  return null;
10
- const packageManager = await select({
11
- message: "Package manager?",
12
- options: [
13
- { value: "pnpm", label: "pnpm" },
14
- { value: "bun", label: "bun" },
15
- { value: "yarn", label: "yarn" },
16
- ],
17
- });
18
- if (isCancel(packageManager))
19
- return null;
20
10
  const blog = await confirm({ message: "Include Blog section?" });
21
11
  if (isCancel(blog))
22
12
  return null;
@@ -25,7 +15,7 @@ export async function runPrompts() {
25
15
  return null;
26
16
  return {
27
17
  projectName: String(projectName).trim(),
28
- packageManager: packageManager,
18
+ packageManager: "pnpm",
29
19
  i18n: "dict",
30
20
  stateManagement: "zustand",
31
21
  dataFetching: "tanstack-query",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-landing-app",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Create a production-ready Next.js landing page with one command",
5
5
  "type": "module",
6
6
  "bin": {