create-krispya 0.6.0 → 0.7.0
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 +7 -346
- package/dist/index.cjs +2969 -21
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2953 -5
- package/package.json +29 -15
- package/LICENSE +0 -15
- package/dist/chunks/index.cjs +0 -2976
- package/dist/chunks/index.mjs +0 -2947
- package/dist/cli.cjs +0 -3025
- package/dist/cli.d.cts +0 -1
- package/dist/cli.d.mts +0 -1
- package/dist/cli.d.ts +0 -1
- package/dist/cli.mjs +0 -3004
package/dist/index.d.cts
CHANGED
|
@@ -136,8 +136,8 @@ declare function getLatestYarnVersion(): Promise<string>;
|
|
|
136
136
|
*/
|
|
137
137
|
declare function getLatestNpmCliVersion(): Promise<string>;
|
|
138
138
|
/**
|
|
139
|
-
* Fetches the latest
|
|
140
|
-
* @returns The latest Node.js
|
|
139
|
+
* Fetches the latest stable version of Node.js
|
|
140
|
+
* @returns The latest Node.js version string (e.g., "25.1.0")
|
|
141
141
|
*/
|
|
142
142
|
declare function getLatestNodeVersion(): Promise<string>;
|
|
143
143
|
/**
|
package/dist/index.d.mts
CHANGED
|
@@ -136,8 +136,8 @@ declare function getLatestYarnVersion(): Promise<string>;
|
|
|
136
136
|
*/
|
|
137
137
|
declare function getLatestNpmCliVersion(): Promise<string>;
|
|
138
138
|
/**
|
|
139
|
-
* Fetches the latest
|
|
140
|
-
* @returns The latest Node.js
|
|
139
|
+
* Fetches the latest stable version of Node.js
|
|
140
|
+
* @returns The latest Node.js version string (e.g., "25.1.0")
|
|
141
141
|
*/
|
|
142
142
|
declare function getLatestNodeVersion(): Promise<string>;
|
|
143
143
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -136,8 +136,8 @@ declare function getLatestYarnVersion(): Promise<string>;
|
|
|
136
136
|
*/
|
|
137
137
|
declare function getLatestNpmCliVersion(): Promise<string>;
|
|
138
138
|
/**
|
|
139
|
-
* Fetches the latest
|
|
140
|
-
* @returns The latest Node.js
|
|
139
|
+
* Fetches the latest stable version of Node.js
|
|
140
|
+
* @returns The latest Node.js version string (e.g., "25.1.0")
|
|
141
141
|
*/
|
|
142
142
|
declare function getLatestNodeVersion(): Promise<string>;
|
|
143
143
|
/**
|