create-cloudflare 0.0.0-b032bf2e → 0.0.0-be3a43ff

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/cli.js CHANGED
@@ -52612,7 +52612,9 @@ var require_typescript2 = __commonJS({
52612
52612
  // src/cli.ts
52613
52613
  var cli_exports = {};
52614
52614
  __export(cli_exports, {
52615
- main: () => main
52615
+ C3_DEFAULTS: () => C3_DEFAULTS,
52616
+ main: () => main,
52617
+ parseArgs: () => parseArgs
52616
52618
  });
52617
52619
  module.exports = __toCommonJS(cli_exports);
52618
52620
  var import_haikunator = __toESM(require_dist_node());
@@ -54347,174 +54349,165 @@ var logUpdateStderr = createLogUpdate(import_node_process6.default.stderr);
54347
54349
  var grayBar = gray(shapes.bar);
54348
54350
  var blCorner = gray(shapes.corners.bl);
54349
54351
  var leftT = gray(shapes.leftT);
54350
- var textInput = async (opts) => {
54351
- const { renderSubmitted, question, defaultValue, validate, acceptDefault } = opts;
54352
- const helpText = opts.helpText || ``;
54353
- const format3 = opts.format || ((val) => val);
54354
- const prompt = new oD({
54355
- defaultValue,
54356
- validate,
54357
- render() {
54358
- let body = "";
54359
- switch (this.state) {
54360
- case "initial":
54361
- body += `${blCorner} ${bold(question)} ${dim(helpText)}
54362
- `;
54363
- body += `${space(2)}${gray(format3(defaultValue))}
54364
- `;
54365
- break;
54366
- case "active":
54367
- body += `${blCorner} ${bold(question)} ${dim(helpText)}
54368
- `;
54369
- body += `${space(2)}${format3(this.value || dim(defaultValue))}
54370
- `;
54371
- break;
54372
- case "submit":
54373
- body += `${leftT} ${question}
54374
- `;
54375
- body += `${grayBar} ${renderSubmitted(
54376
- format3(this.value)
54377
- )}
54378
- ${grayBar}`;
54379
- break;
54380
- case "error":
54381
- body += `${leftT} ${status.error} ${dim(this.error)}
54382
- `;
54383
- body += `${grayBar}
54384
- `;
54385
- body += `${blCorner} ${question} ${dim(helpText)}
54386
- `;
54387
- body += `${space(2)}${format3(this.value)}
54388
- `;
54389
- break;
54390
- default:
54391
- break;
54392
- }
54393
- return body;
54394
- }
54395
- });
54396
- let value;
54397
- if (acceptDefault) {
54398
- logRaw(`${leftT} ${question}`);
54399
- logRaw(`${grayBar} ${renderSubmitted(defaultValue)}
54400
- ${grayBar}`);
54401
- value = defaultValue;
54402
- validate?.(value);
54403
- } else {
54404
- value = await prompt.prompt();
54405
- if (eD(value)) {
54406
- cancel("Operation cancelled.");
54407
- process.exit(0);
54408
- }
54409
- }
54352
+ var processArgument = async (args, name, promptConfig) => {
54353
+ let value = args[name];
54354
+ const renderSubmitted = getRenderers(promptConfig).submit;
54355
+ if (value !== void 0) {
54356
+ promptConfig.validate?.(value);
54357
+ const lines = renderSubmitted({ value });
54358
+ logRaw(lines.join("\n"));
54359
+ return value;
54360
+ }
54361
+ value = await inputPrompt(promptConfig);
54410
54362
  return value;
54411
54363
  };
54412
- var selectInput = async (opts) => {
54413
- const { question, options, renderSubmitted, defaultValue, acceptDefault } = opts;
54414
- const helpText = opts.helpText || ``;
54415
- const prompt = new ED({
54416
- options,
54417
- initialValue: defaultValue ?? options[0].value,
54418
- render() {
54419
- const renderOption = (opt, i) => {
54420
- const { label } = opt;
54421
- const active = i === this.cursor;
54422
- const text = active ? blue.underline(label) : dim(label);
54423
- const indicator = active ? blue(shapes.radioActive) : dim(shapes.radioInactive);
54424
- return `${space(2)}${indicator} ${text}`;
54425
- };
54426
- let body = ``;
54427
- switch (this.state) {
54428
- case "submit":
54429
- body += `${leftT} ${question}
54430
- `;
54431
- body += `${grayBar} ${renderSubmitted(options[this.cursor])}`;
54432
- body += `
54433
- ${grayBar}`;
54434
- break;
54435
- default:
54436
- body += `${blCorner} ${bold(question)} ${dim(helpText)}
54437
- `;
54438
- body += `${options.map(renderOption).join(`
54439
- `)}
54440
- `;
54441
- break;
54364
+ var inputPrompt = async (promptConfig) => {
54365
+ const renderers = getRenderers(promptConfig);
54366
+ let prompt;
54367
+ const dispatchRender = (props) => {
54368
+ const renderedLines = renderers[props.state](props);
54369
+ return renderedLines.join("\n");
54370
+ };
54371
+ if (promptConfig.type === "select") {
54372
+ prompt = new ED({
54373
+ ...promptConfig,
54374
+ options: promptConfig.options,
54375
+ initialValue: String(promptConfig.defaultValue),
54376
+ render() {
54377
+ return dispatchRender(this);
54442
54378
  }
54443
- return body;
54444
- }
54445
- });
54446
- let value;
54447
- if (acceptDefault) {
54448
- logRaw(`${leftT} ${question}`);
54449
- logRaw(
54450
- `${grayBar} ${renderSubmitted({
54451
- label: defaultValue,
54452
- value: defaultValue
54453
- })}`
54454
- );
54455
- logRaw(`${grayBar}`);
54456
- value = defaultValue;
54379
+ });
54380
+ } else if (promptConfig.type === "confirm") {
54381
+ prompt = new sD({
54382
+ ...promptConfig,
54383
+ initialValue: Boolean(promptConfig.defaultValue),
54384
+ active: promptConfig.activeText || "",
54385
+ inactive: promptConfig.inactiveText || "",
54386
+ render() {
54387
+ return dispatchRender(this);
54388
+ }
54389
+ });
54457
54390
  } else {
54458
- value = await prompt.prompt();
54459
- if (eD(value)) {
54460
- cancel("Operation cancelled.");
54461
- process.exit(0);
54462
- }
54391
+ prompt = new oD({
54392
+ ...promptConfig,
54393
+ defaultValue: String(promptConfig.defaultValue),
54394
+ render() {
54395
+ return dispatchRender(this);
54396
+ }
54397
+ });
54463
54398
  }
54464
- return value;
54399
+ const input = await prompt.prompt();
54400
+ if (eD(input)) {
54401
+ cancel("Operation cancelled.");
54402
+ process.exit(0);
54403
+ }
54404
+ return input;
54405
+ };
54406
+ var renderSubmit = (config14, value) => {
54407
+ const { question, label } = config14;
54408
+ const content = config14.type === "confirm" ? `${grayBar} ${brandColor(value)} ${dim(label)}` : `${grayBar} ${brandColor(label)} ${dim(value)}`;
54409
+ return [`${leftT} ${question}`, content, `${grayBar}`];
54410
+ };
54411
+ var handleCancel = () => {
54412
+ cancel("Operation cancelled.");
54413
+ process.exit(0);
54465
54414
  };
54466
- var confirmInput = async (opts) => {
54415
+ var getRenderers = (config14) => {
54416
+ switch (config14.type) {
54417
+ case "select":
54418
+ return getSelectRenderers(config14);
54419
+ case "confirm":
54420
+ return getConfirmRenderers(config14);
54421
+ case "text":
54422
+ return getTextRenderers(config14);
54423
+ }
54424
+ };
54425
+ var getTextRenderers = (config14) => {
54467
54426
  const {
54468
- activeText,
54469
- inactiveText,
54427
+ defaultValue,
54470
54428
  question,
54471
- renderSubmitted,
54472
- defaultValue = true,
54473
- acceptDefault
54474
- } = opts;
54475
- const helpText = opts.helpText || `(y/n)`;
54429
+ helpText: _helpText,
54430
+ format: _format
54431
+ } = config14;
54432
+ const helpText = _helpText ?? "";
54433
+ const format3 = _format ?? ((val) => String(val));
54434
+ return {
54435
+ initial: () => [
54436
+ `${blCorner} ${bold(question)} ${dim(helpText)}`,
54437
+ `${space(2)}${gray(format3(defaultValue))}`,
54438
+ ``
54439
+ // extra line for readability
54440
+ ],
54441
+ active: ({ value }) => [
54442
+ `${blCorner} ${bold(question)} ${dim(helpText)}`,
54443
+ `${space(2)}${format3(value || dim(defaultValue))}`,
54444
+ ``
54445
+ // extra line for readability
54446
+ ],
54447
+ error: ({ value, error }) => [
54448
+ `${leftT} ${status.error} ${dim(error)}`,
54449
+ `${grayBar}`,
54450
+ `${blCorner} ${question} ${dim(helpText)}`,
54451
+ `${space(2)}${format3(value)}`,
54452
+ ``
54453
+ // extra line for readability
54454
+ ],
54455
+ submit: ({ value }) => renderSubmit(config14, format3(value)),
54456
+ cancel: handleCancel
54457
+ };
54458
+ };
54459
+ var getSelectRenderers = (config14) => {
54460
+ const { options, question, helpText: _helpText } = config14;
54461
+ const helpText = _helpText ?? "";
54462
+ const defaultRenderer = ({ cursor }) => {
54463
+ const renderOption = (opt, i) => {
54464
+ const { label: optionLabel } = opt;
54465
+ const active = i === cursor;
54466
+ const text = active ? blue.underline(optionLabel) : dim(optionLabel);
54467
+ const indicator = active ? blue(shapes.radioActive) : dim(shapes.radioInactive);
54468
+ return `${space(2)}${indicator} ${text}`;
54469
+ };
54470
+ return [
54471
+ `${blCorner} ${bold(question)} ${dim(helpText)}`,
54472
+ `${options.map(renderOption).join(`
54473
+ `)}`,
54474
+ ``
54475
+ // extra line for readability
54476
+ ];
54477
+ };
54478
+ return {
54479
+ initial: defaultRenderer,
54480
+ active: defaultRenderer,
54481
+ confirm: defaultRenderer,
54482
+ error: defaultRenderer,
54483
+ submit: ({ value }) => renderSubmit(
54484
+ config14,
54485
+ options.find((o2) => o2.value === value)?.label
54486
+ ),
54487
+ cancel: handleCancel
54488
+ };
54489
+ };
54490
+ var getConfirmRenderers = (config14) => {
54491
+ const { activeText, inactiveText, question, helpText: _helpText } = config14;
54492
+ const helpText = _helpText ?? "";
54476
54493
  const active = activeText || "Yes";
54477
54494
  const inactive = inactiveText || "No";
54478
- const prompt = new sD({
54479
- active,
54480
- inactive,
54481
- initialValue: defaultValue,
54482
- render() {
54483
- const yesColor = this.value ? blue : dim;
54484
- const noColor = this.value ? dim : blue;
54485
- let body = ``;
54486
- switch (this.state) {
54487
- case "submit":
54488
- body += `${leftT} ${question}
54489
- `;
54490
- body += `${grayBar} ${renderSubmitted(this.value)}`;
54491
- body += `
54492
- ${grayBar}`;
54493
- break;
54494
- default:
54495
- body += `${blCorner} ${bold(question)} ${dim(helpText)}
54496
- `;
54497
- body += `${space(2)}${yesColor(active)} / ${noColor(inactive)}
54498
- `;
54499
- break;
54500
- }
54501
- return body;
54502
- }
54503
- });
54504
- let value;
54505
- if (acceptDefault) {
54506
- logRaw(`${leftT} ${question}`);
54507
- logRaw(`${grayBar} ${renderSubmitted(defaultValue)}`);
54508
- logRaw(`${grayBar}`);
54509
- value = defaultValue;
54510
- } else {
54511
- value = Boolean(await prompt.prompt());
54512
- if (eD(value)) {
54513
- cancel("Operation cancelled.");
54514
- process.exit(0);
54515
- }
54516
- }
54517
- return value;
54495
+ const defaultRenderer = ({ value }) => {
54496
+ const yesColor = value ? blue : dim;
54497
+ const noColor = value ? dim : blue;
54498
+ return [
54499
+ `${blCorner} ${bold(question)} ${dim(helpText)}`,
54500
+ `${space(2)}${yesColor(active)} / ${noColor(inactive)}`
54501
+ ];
54502
+ };
54503
+ return {
54504
+ initial: defaultRenderer,
54505
+ active: defaultRenderer,
54506
+ confirm: defaultRenderer,
54507
+ error: defaultRenderer,
54508
+ submit: ({ value }) => renderSubmit(config14, value ? "yes" : "no"),
54509
+ cancel: handleCancel
54510
+ };
54518
54511
  };
54519
54512
  var spinner = () => {
54520
54513
  const spinnerFrames = ["\u2524", "\u2518", "\u2534", "\u2514", "\u251C", "\u250C", "\u252C", "\u2510"];
@@ -59419,7 +59412,7 @@ var Yargs = YargsFactory(esm_default);
59419
59412
  var yargs_default = Yargs;
59420
59413
 
59421
59414
  // package.json
59422
- var version = "0.0.0-b032bf2e";
59415
+ var version = "0.0.0-be3a43ff";
59423
59416
 
59424
59417
  // src/common.ts
59425
59418
  var import_fs6 = require("fs");
@@ -59779,14 +59772,12 @@ var setupProjectDirectory = (args) => {
59779
59772
  };
59780
59773
  var offerToDeploy = async (ctx) => {
59781
59774
  startSection(`Deploy with Cloudflare`, `Step 3 of 3`);
59782
- ctx.args.deploy = await confirmInput({
59775
+ const label = `deploy via \`${npm} run ${ctx.framework?.config.deployCommand ?? "deploy"}\``;
59776
+ ctx.args.deploy = await processArgument(ctx.args, "deploy", {
59777
+ type: "confirm",
59783
59778
  question: "Do you want to deploy your application?",
59784
- renderSubmitted: (value) => `${brandColor(value ? `yes` : `no`)} ${dim(
59785
- `deploying via \`${npm} run ${ctx.framework?.config.deployCommand ?? "deploy"}\``
59786
- )}`,
59787
- defaultValue: ctx.args.deploy ?? (ctx.args.wranglerDefaults ? false : true),
59788
- // if --wrangler-defaults, default to false, otherwise default to true
59789
- acceptDefault: ctx.args.wranglerDefaults
59779
+ label,
59780
+ defaultValue: C3_DEFAULTS.deploy
59790
59781
  });
59791
59782
  if (!ctx.args.deploy)
59792
59783
  return;
@@ -59840,14 +59831,12 @@ var chooseAccount = async (ctx) => {
59840
59831
  label: name,
59841
59832
  value: id
59842
59833
  }));
59843
- accountId = await selectInput({
59834
+ accountId = await inputPrompt({
59835
+ type: "select",
59844
59836
  question: "Which account do you want to use?",
59845
59837
  options: accountOptions,
59846
- renderSubmitted: (option) => {
59847
- return `${brandColor("account")} ${dim(option.label)}`;
59848
- },
59849
- defaultValue: accountOptions[0].value,
59850
- acceptDefault: ctx.args.wranglerDefaults
59838
+ label: "account",
59839
+ defaultValue: accountOptions[0].value
59851
59840
  });
59852
59841
  }
59853
59842
  const accountName = Object.keys(accounts).find(
@@ -59857,6 +59846,7 @@ var chooseAccount = async (ctx) => {
59857
59846
  };
59858
59847
  var printSummary = async (ctx) => {
59859
59848
  const nextSteps = [
59849
+ [`Navigate to the new directory:`, `cd ${ctx.project.name}`],
59860
59850
  [
59861
59851
  `Run the development server`,
59862
59852
  `${npm} run ${ctx.framework?.config.devCommand ?? "start"}`
@@ -59919,11 +59909,11 @@ var offerGit = async (ctx) => {
59919
59909
  const insideGitRepo = await isInsideGitRepo(ctx.project.path);
59920
59910
  if (insideGitRepo)
59921
59911
  return;
59922
- ctx.args.git ??= await confirmInput({
59912
+ ctx.args.git = await processArgument(ctx.args, "git", {
59913
+ type: "confirm",
59923
59914
  question: "Do you want to use git for version control?",
59924
- renderSubmitted: (value) => `${brandColor("git")} ${dim(value ? `yes` : `no`)}`,
59925
- defaultValue: true,
59926
- acceptDefault: ctx.args.wranglerDefaults
59915
+ label: "git",
59916
+ defaultValue: C3_DEFAULTS.git
59927
59917
  });
59928
59918
  if (ctx.args.git) {
59929
59919
  await printAsyncStatus({
@@ -60191,25 +60181,19 @@ var docusaurus_default = config3;
60191
60181
  var { npm: npm4, dlx: dlx4 } = detectPackageManager();
60192
60182
  var generate4 = async (ctx) => {
60193
60183
  const defaultTemplate = "https://github.com/gatsbyjs/gatsby-starter-blog";
60194
- const useTemplate = await confirmInput({
60184
+ const useTemplate = await inputPrompt({
60185
+ type: "confirm",
60195
60186
  question: "Would you like to use a template?",
60196
- renderSubmitted: (value) => {
60197
- const status2 = value ? "yes" : "no";
60198
- return `${brandColor(`template`)} ${status2}`;
60199
- },
60200
- defaultValue: true,
60201
- acceptDefault: false
60187
+ label: "template",
60188
+ defaultValue: true
60202
60189
  });
60203
60190
  let templateUrl = "";
60204
60191
  if (useTemplate) {
60205
- templateUrl = await textInput({
60192
+ templateUrl = await inputPrompt({
60193
+ type: "text",
60206
60194
  question: `Please specify the url of the template you'd like to use`,
60207
- renderSubmitted: (value) => {
60208
- const result = `Using template \`${value}\``;
60209
- return `${brandColor("template")} ${dim(result)}`;
60210
- },
60211
- defaultValue: defaultTemplate,
60212
- acceptDefault: false
60195
+ label: "template",
60196
+ defaultValue: defaultTemplate
60213
60197
  });
60214
60198
  }
60215
60199
  const version2 = getFrameworkVersion(ctx);
@@ -60613,7 +60597,7 @@ var versionMap_default = {
60613
60597
  astro: "3.1.5",
60614
60598
  docusaurus: "2.4.1",
60615
60599
  gatsby: "5.10.0",
60616
- hono: "0.2.0",
60600
+ hono: "0.2.6",
60617
60601
  next: "13.4.2",
60618
60602
  nuxt: "3.4.2",
60619
60603
  qwik: "1.1.x",
@@ -60718,14 +60702,12 @@ var getFrameworkSelection = async (args) => {
60718
60702
  value: key
60719
60703
  })
60720
60704
  );
60721
- const framework = await selectInput({
60705
+ const framework = await processArgument(args, "framework", {
60706
+ type: "select",
60707
+ label: "framework",
60722
60708
  question: "Which development framework do you want to use?",
60723
60709
  options: frameworkOptions,
60724
- renderSubmitted: (option) => {
60725
- return `${brandColor("framework")} ${dim(option.label)}`;
60726
- },
60727
- defaultValue: args.framework ?? "svelte",
60728
- acceptDefault: Boolean(args.framework)
60710
+ defaultValue: C3_DEFAULTS.framework
60729
60711
  });
60730
60712
  framework || crash("A framework must be selected to continue.");
60731
60713
  if (!supportedFramework(framework)) {
@@ -60803,11 +60785,11 @@ var runWorkersGenerator = async (args) => {
60803
60785
  };
60804
60786
  async function getTemplate(ctx) {
60805
60787
  if (ctx.args.ts === void 0) {
60806
- ctx.args.ts = await confirmInput({
60788
+ ctx.args.ts = await processArgument(ctx.args, "ts", {
60789
+ type: "confirm",
60807
60790
  question: "Do you want to use TypeScript?",
60808
- renderSubmitted: (value) => `${brandColor("typescript")} ${dim(`${value ? "yes" : "no"}`)}`,
60809
- defaultValue: true,
60810
- acceptDefault: ctx.args.wranglerDefaults
60791
+ label: "typescript",
60792
+ defaultValue: C3_DEFAULTS.ts
60811
60793
  });
60812
60794
  }
60813
60795
  const preexisting = ctx.args.type === "pre-existing";
@@ -60833,12 +60815,16 @@ async function copyExistingWorkerFiles(ctx) {
60833
60815
  if (preexisting) {
60834
60816
  await chooseAccount(ctx);
60835
60817
  if (ctx.args.existingScript === void 0) {
60836
- ctx.args.existingScript = await textInput({
60837
- question: "Please specify the name of the existing worker in this account?",
60838
- renderSubmitted: (value) => `${brandColor("worker")} ${dim(`"${value}"`)}`,
60839
- defaultValue: ctx.project.name,
60840
- acceptDefault: ctx.args.wranglerDefaults
60841
- });
60818
+ ctx.args.existingScript = await processArgument(
60819
+ ctx.args,
60820
+ "existingScript",
60821
+ {
60822
+ type: "text",
60823
+ question: "Please specify the name of the existing worker in this account?",
60824
+ label: "worker",
60825
+ defaultValue: ctx.project.name
60826
+ }
60827
+ );
60842
60828
  }
60843
60829
  const tempdir = await (0, import_promises3.mkdtemp)(
60844
60830
  (0, import_path9.join)((0, import_os.tmpdir)(), "c3-wrangler-init--from-dash-")
@@ -60894,19 +60880,55 @@ async function updateFiles(ctx) {
60894
60880
  }
60895
60881
 
60896
60882
  // src/cli.ts
60883
+ var C3_DEFAULTS = {
60884
+ projectName: new import_haikunator.default().haikunate({ tokenHex: true }),
60885
+ type: "hello-world",
60886
+ framework: "angular",
60887
+ deploy: true,
60888
+ git: true,
60889
+ open: true,
60890
+ ts: true
60891
+ };
60892
+ var WRANGLER_DEFAULTS = {
60893
+ ...C3_DEFAULTS,
60894
+ deploy: false
60895
+ };
60897
60896
  var main = async (argv) => {
60898
60897
  const args = await parseArgs(argv);
60899
60898
  printBanner();
60899
+ const projectName = await processArgument(args, "projectName", {
60900
+ type: "text",
60901
+ question: `In which directory do you want to create your application?`,
60902
+ helpText: "also used as application name",
60903
+ defaultValue: C3_DEFAULTS.projectName,
60904
+ label: "dir",
60905
+ validate: (value) => validateProjectDirectory(String(value) || C3_DEFAULTS.projectName),
60906
+ format: (val) => `./${val}`
60907
+ });
60908
+ if (!args.type) {
60909
+ if (args.framework) {
60910
+ args.type = "webFramework";
60911
+ } else if (args.existingScript) {
60912
+ args.type = "pre-existing";
60913
+ }
60914
+ }
60915
+ const templateOptions = Object.entries(templateMap).filter(([_3, { hidden: hidden2 }]) => !hidden2).map(([value, { label }]) => ({ value, label }));
60916
+ const type = await processArgument(args, "type", {
60917
+ type: "select",
60918
+ question: "What type of application do you want to create?",
60919
+ label: "type",
60920
+ options: templateOptions,
60921
+ defaultValue: C3_DEFAULTS.type
60922
+ });
60923
+ if (!type || !Object.keys(templateMap).includes(type)) {
60924
+ return crash("An application type must be specified to continue.");
60925
+ }
60900
60926
  const validatedArgs = {
60901
60927
  ...args,
60902
- projectName: await validateName(args.projectName, {
60903
- acceptDefault: args.wranglerDefaults
60904
- }),
60905
- type: await validateType(args.type, {
60906
- acceptDefault: args.wranglerDefaults
60907
- })
60928
+ type,
60929
+ projectName
60908
60930
  };
60909
- const { handler } = templateMap[validatedArgs.type];
60931
+ const { handler } = templateMap[type];
60910
60932
  await handler(validatedArgs);
60911
60933
  };
60912
60934
  var printBanner = () => {
@@ -60923,42 +60945,17 @@ var parseArgs = async (argv) => {
60923
60945
  }).option("existing-script", {
60924
60946
  type: "string",
60925
60947
  hidden: templateMap["pre-existing"].hidden
60948
+ }).option("accept-defaults", {
60949
+ alias: "y",
60950
+ type: "boolean"
60926
60951
  }).option("wrangler-defaults", { type: "boolean", hidden: true }).version(version).help().argv;
60927
60952
  return {
60953
+ ...args.wranglerDefaults && WRANGLER_DEFAULTS,
60954
+ ...args.acceptDefaults && C3_DEFAULTS,
60928
60955
  projectName: args._[0],
60929
60956
  ...args
60930
60957
  };
60931
60958
  };
60932
- var validateName = async (name, { acceptDefault = false } = {}) => {
60933
- const defaultValue = name ?? new import_haikunator.default().haikunate({ tokenHex: true });
60934
- return textInput({
60935
- question: `In which directory do you want to create your application?`,
60936
- helpText: "also used as application name",
60937
- renderSubmitted: (value) => {
60938
- return `${brandColor("dir")} ${dim(value)}`;
60939
- },
60940
- defaultValue,
60941
- acceptDefault,
60942
- validate: (value) => validateProjectDirectory(value || defaultValue),
60943
- format: (val) => `./${val}`
60944
- });
60945
- };
60946
- var validateType = async (type, { acceptDefault = false } = {}) => {
60947
- const templateOptions = Object.entries(templateMap).filter(([_3, { hidden: hidden2 }]) => !hidden2).map(([value, { label }]) => ({ value, label }));
60948
- type = await selectInput({
60949
- question: "What type of application do you want to create?",
60950
- options: templateOptions,
60951
- renderSubmitted: (option) => {
60952
- return `${brandColor("type")} ${dim(option.label)}`;
60953
- },
60954
- defaultValue: type ?? "hello-world",
60955
- acceptDefault
60956
- });
60957
- if (!type || !Object.keys(templateMap).includes(type)) {
60958
- crash("An application type must be specified to continue.");
60959
- }
60960
- return type;
60961
- };
60962
60959
  var templateMap = {
60963
60960
  webFramework: {
60964
60961
  label: "Website or web app",
@@ -60996,7 +60993,9 @@ var templateMap = {
60996
60993
  main(process.argv).catch((e) => crash(e));
60997
60994
  // Annotate the CommonJS export names for ESM import in node:
60998
60995
  0 && (module.exports = {
60999
- main
60996
+ C3_DEFAULTS,
60997
+ main,
60998
+ parseArgs
61000
60999
  });
61001
61000
  /*! Bundled license information:
61002
61001
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "0.0.0-b032bf2e",
3
+ "version": "0.0.0-be3a43ff",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -7,7 +7,6 @@
7
7
  "start": "wrangler dev"
8
8
  },
9
9
  "devDependencies": {
10
- "@cloudflare/workers-types": "^4.20230419.0",
11
10
  "itty-router": "^3.0.12",
12
11
  "wrangler": "^3.0.0"
13
12
  }
@@ -7,8 +7,6 @@
7
7
  "start": "wrangler dev"
8
8
  },
9
9
  "devDependencies": {
10
- "@cloudflare/workers-types": "^4.20230419.0",
11
- "typescript": "^5.0.4",
12
10
  "wrangler": "^3.0.0"
13
11
  }
14
12
  }
@@ -7,8 +7,6 @@
7
7
  "start": "wrangler dev"
8
8
  },
9
9
  "devDependencies": {
10
- "@cloudflare/workers-types": "^4.20230419.0",
11
- "typescript": "^5.0.4",
12
10
  "wrangler": "^3.0.0"
13
11
  }
14
12
  }
@@ -7,8 +7,6 @@
7
7
  "start": "wrangler dev"
8
8
  },
9
9
  "devDependencies": {
10
- "@cloudflare/workers-types": "^4.20230419.0",
11
- "typescript": "^5.0.4",
12
10
  "wrangler": "^3.0.0"
13
11
  }
14
12
  }