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 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
- To create a new app, you may choose one of the following methods:
26
-
27
- ### npx
25
+ - With NPM:
28
26
 
29
27
  ```sh
30
- npx create-awesome-node-app my-project
28
+ npm create awesome-node-app@latest
31
29
  ```
32
30
 
33
- _([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_
34
-
35
- ### npm
31
+ - With Yarn:
36
32
 
37
33
  ```sh
38
- npm init awesome-node-app my-project
34
+ yarn create awesome-node-app
39
35
  ```
40
36
 
41
- _`npm init <initializer>` is available in npm 6+_
42
-
43
- ### yarn
37
+ - With PNPM:
44
38
 
45
39
  ```sh
46
- yarn create awesome-node-app my-project
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.7",
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.7",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-awesome-node-app",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
4
4
  "type": "module",
5
5
  "description": "Command line tool to create Node apps with a lot of different templates and extensions.",
6
6
  "license": "MIT",