create-awesome-node-app 0.3.3 → 0.3.4
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.cjs +16 -1
- package/dist/index.js +16 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3500,6 +3500,21 @@ var getCnaOptions = async (options) => {
|
|
|
3500
3500
|
message: `What's your project name?`,
|
|
3501
3501
|
initial: options.projectName
|
|
3502
3502
|
},
|
|
3503
|
+
{
|
|
3504
|
+
type: "select",
|
|
3505
|
+
name: "language",
|
|
3506
|
+
message: "What language do you want to use?",
|
|
3507
|
+
choices: [
|
|
3508
|
+
{
|
|
3509
|
+
title: "JavaScript",
|
|
3510
|
+
value: "js",
|
|
3511
|
+
disabled: true,
|
|
3512
|
+
description: "Wrong answer! Use TypeScript instead..."
|
|
3513
|
+
},
|
|
3514
|
+
{ title: "TypeScript", value: "ts", description: "Correct answer! :D" }
|
|
3515
|
+
],
|
|
3516
|
+
initial: 1
|
|
3517
|
+
},
|
|
3503
3518
|
{
|
|
3504
3519
|
type: "toggle",
|
|
3505
3520
|
name: "useNpm",
|
|
@@ -3644,7 +3659,7 @@ var getCnaOptions = async (options) => {
|
|
|
3644
3659
|
// package.json
|
|
3645
3660
|
var package_default = {
|
|
3646
3661
|
name: "create-awesome-node-app",
|
|
3647
|
-
version: "0.3.
|
|
3662
|
+
version: "0.3.4",
|
|
3648
3663
|
type: "module",
|
|
3649
3664
|
description: "Command line tool to create Node apps with a lot of different templates and extensions.",
|
|
3650
3665
|
license: "MIT",
|
package/dist/index.js
CHANGED
|
@@ -3506,6 +3506,21 @@ var getCnaOptions = async (options) => {
|
|
|
3506
3506
|
message: `What's your project name?`,
|
|
3507
3507
|
initial: options.projectName
|
|
3508
3508
|
},
|
|
3509
|
+
{
|
|
3510
|
+
type: "select",
|
|
3511
|
+
name: "language",
|
|
3512
|
+
message: "What language do you want to use?",
|
|
3513
|
+
choices: [
|
|
3514
|
+
{
|
|
3515
|
+
title: "JavaScript",
|
|
3516
|
+
value: "js",
|
|
3517
|
+
disabled: true,
|
|
3518
|
+
description: "Wrong answer! Use TypeScript instead..."
|
|
3519
|
+
},
|
|
3520
|
+
{ title: "TypeScript", value: "ts", description: "Correct answer! :D" }
|
|
3521
|
+
],
|
|
3522
|
+
initial: 1
|
|
3523
|
+
},
|
|
3509
3524
|
{
|
|
3510
3525
|
type: "toggle",
|
|
3511
3526
|
name: "useNpm",
|
|
@@ -3650,7 +3665,7 @@ var getCnaOptions = async (options) => {
|
|
|
3650
3665
|
// package.json
|
|
3651
3666
|
var package_default = {
|
|
3652
3667
|
name: "create-awesome-node-app",
|
|
3653
|
-
version: "0.3.
|
|
3668
|
+
version: "0.3.4",
|
|
3654
3669
|
type: "module",
|
|
3655
3670
|
description: "Command line tool to create Node apps with a lot of different templates and extensions.",
|
|
3656
3671
|
license: "MIT",
|