create-awesome-node-app 0.7.0 → 0.7.1
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 +188 -161
- package/dist/index.cjs +10 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -8
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -1572,7 +1572,9 @@ import {
|
|
|
1572
1572
|
import { isCI } from "ci-info";
|
|
1573
1573
|
import prompts from "prompts";
|
|
1574
1574
|
import yargs from "yargs";
|
|
1575
|
-
prompts.override(
|
|
1575
|
+
prompts.override(
|
|
1576
|
+
yargs(process.argv.slice(2)).help(false).version(false).argv
|
|
1577
|
+
);
|
|
1576
1578
|
var PACKAGE_MANAGERS = ["npm", "yarn", "pnpm"];
|
|
1577
1579
|
var isValidUrl = (url) => {
|
|
1578
1580
|
try {
|
|
@@ -1833,7 +1835,7 @@ var getCnaOptions = async (options) => {
|
|
|
1833
1835
|
// package.json
|
|
1834
1836
|
var package_default = {
|
|
1835
1837
|
name: "create-awesome-node-app",
|
|
1836
|
-
version: "0.7.
|
|
1838
|
+
version: "0.7.1",
|
|
1837
1839
|
type: "module",
|
|
1838
1840
|
description: "Command line tool to create Node apps with a lot of different templates and extensions.",
|
|
1839
1841
|
license: "MIT",
|
|
@@ -1887,8 +1889,8 @@ var package_default = {
|
|
|
1887
1889
|
"test:src": "npm run test"
|
|
1888
1890
|
},
|
|
1889
1891
|
dependencies: {
|
|
1890
|
-
"@create-node-app/core": "^0.5.
|
|
1891
|
-
axios: "^1.
|
|
1892
|
+
"@create-node-app/core": "^0.5.7",
|
|
1893
|
+
axios: "^1.13.6",
|
|
1892
1894
|
"ci-info": "^4.3.0",
|
|
1893
1895
|
commander: "^14.0.1",
|
|
1894
1896
|
prompts: "^2.4.2",
|
|
@@ -1896,17 +1898,17 @@ var package_default = {
|
|
|
1896
1898
|
yargs: "^18.0.0"
|
|
1897
1899
|
},
|
|
1898
1900
|
devDependencies: {
|
|
1901
|
+
"@create-node-app/core": "^0.5.7",
|
|
1899
1902
|
"@create-node-app/eslint-config-ts": "*",
|
|
1900
|
-
"@create-node-app/core": "^0.5.6",
|
|
1901
1903
|
"@types/node": "^24.5.2",
|
|
1902
1904
|
"@types/prompts": "^2.4.9",
|
|
1903
|
-
"@types/yargs": "^17.0.33",
|
|
1904
1905
|
"@types/semver": "^7.5.8",
|
|
1905
|
-
|
|
1906
|
+
"@types/yargs": "^17.0.33",
|
|
1906
1907
|
eslint: "^9.35.0",
|
|
1907
1908
|
"eslint-config-turbo": "^2.5.6",
|
|
1908
|
-
tsup: "^8.5.0",
|
|
1909
1909
|
"eslint-plugin-turbo": "^2.5.6",
|
|
1910
|
+
nock: "^13.5.4",
|
|
1911
|
+
tsup: "^8.5.0",
|
|
1910
1912
|
tsx: "^4.19.0"
|
|
1911
1913
|
}
|
|
1912
1914
|
};
|