create-awesome-node-app 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/README.md +6 -14
- package/dist/index.cjs +1 -16
- package/dist/index.js +1 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,32 +22,24 @@ Powerful tool to scaffold your application choosing between different templates
|
|
|
22
22
|
|
|
23
23
|
## Creating an app
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### npx
|
|
25
|
+
- With NPM:
|
|
28
26
|
|
|
29
27
|
```sh
|
|
30
|
-
|
|
28
|
+
npm create awesome-node-app@latest
|
|
31
29
|
```
|
|
32
30
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### npm
|
|
31
|
+
- With Yarn:
|
|
36
32
|
|
|
37
33
|
```sh
|
|
38
|
-
|
|
34
|
+
yarn create awesome-node-app
|
|
39
35
|
```
|
|
40
36
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
### yarn
|
|
37
|
+
- With PNPM:
|
|
44
38
|
|
|
45
39
|
```sh
|
|
46
|
-
|
|
40
|
+
pnpm create awesome-node-app
|
|
47
41
|
```
|
|
48
42
|
|
|
49
|
-
_`yarn create` is available in Yarn 0.25+_
|
|
50
|
-
|
|
51
43
|
[cibadge]: https://github.com/Create-Node-App/create-node-app/actions/workflows/ci.yml/badge.svg
|
|
52
44
|
[npmversion]: https://img.shields.io/npm/v/create-awesome-node-app.svg?maxAge=2592000?style=plastic
|
|
53
45
|
[npmdownloads]: https://img.shields.io/npm/dm/create-awesome-node-app.svg?maxAge=2592000?style=plastic
|
package/dist/index.cjs
CHANGED
|
@@ -3500,21 +3500,6 @@ 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
|
-
},
|
|
3518
3503
|
{
|
|
3519
3504
|
type: "select",
|
|
3520
3505
|
name: "packageManager",
|
|
@@ -3656,7 +3641,7 @@ var getCnaOptions = async (options) => {
|
|
|
3656
3641
|
// package.json
|
|
3657
3642
|
var package_default = {
|
|
3658
3643
|
name: "create-awesome-node-app",
|
|
3659
|
-
version: "0.4.
|
|
3644
|
+
version: "0.4.9",
|
|
3660
3645
|
type: "module",
|
|
3661
3646
|
description: "Command line tool to create Node apps with a lot of different templates and extensions.",
|
|
3662
3647
|
license: "MIT",
|
package/dist/index.js
CHANGED
|
@@ -3510,21 +3510,6 @@ var getCnaOptions = async (options) => {
|
|
|
3510
3510
|
message: `What's your project name?`,
|
|
3511
3511
|
initial: options.projectName
|
|
3512
3512
|
},
|
|
3513
|
-
{
|
|
3514
|
-
type: "select",
|
|
3515
|
-
name: "language",
|
|
3516
|
-
message: "What language do you want to use?",
|
|
3517
|
-
choices: [
|
|
3518
|
-
{
|
|
3519
|
-
title: "JavaScript",
|
|
3520
|
-
value: "js",
|
|
3521
|
-
disabled: true,
|
|
3522
|
-
description: "Wrong answer! Use TypeScript instead..."
|
|
3523
|
-
},
|
|
3524
|
-
{ title: "TypeScript", value: "ts", description: "Correct answer! :D" }
|
|
3525
|
-
],
|
|
3526
|
-
initial: 1
|
|
3527
|
-
},
|
|
3528
3513
|
{
|
|
3529
3514
|
type: "select",
|
|
3530
3515
|
name: "packageManager",
|
|
@@ -3666,7 +3651,7 @@ var getCnaOptions = async (options) => {
|
|
|
3666
3651
|
// package.json
|
|
3667
3652
|
var package_default = {
|
|
3668
3653
|
name: "create-awesome-node-app",
|
|
3669
|
-
version: "0.4.
|
|
3654
|
+
version: "0.4.9",
|
|
3670
3655
|
type: "module",
|
|
3671
3656
|
description: "Command line tool to create Node apps with a lot of different templates and extensions.",
|
|
3672
3657
|
license: "MIT",
|