@rshono/create 1.0.0-rc.19 → 1.0.0-rc.20
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/api.mjs +1 -1
- package/dist/cli.mjs +2 -2
- package/package.json +2 -2
package/dist/api.mjs
CHANGED
|
@@ -147,7 +147,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
147
147
|
|
|
148
148
|
;// CONCATENATED MODULE: ./src/generated/framework.ts
|
|
149
149
|
// GENERATED by scripts/codegen.mjs from packages/core — do not edit. Run `pnpm --filter @rshono/create codegen`.
|
|
150
|
-
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.
|
|
150
|
+
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.20';
|
|
151
151
|
/**
|
|
152
152
|
* The Node range rshono declares, restated in every scaffolded app's `engines` — so a CI image or a contributor
|
|
153
153
|
* on an older Node hears it from their package manager rather than from a stack trace.
|
package/dist/cli.mjs
CHANGED
|
@@ -2941,7 +2941,7 @@ function hasGit(cwd) {
|
|
|
2941
2941
|
|
|
2942
2942
|
;// CONCATENATED MODULE: ./src/generated/framework.ts
|
|
2943
2943
|
// GENERATED by scripts/codegen.mjs from packages/core — do not edit. Run `pnpm --filter @rshono/create codegen`.
|
|
2944
|
-
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.
|
|
2944
|
+
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.20';
|
|
2945
2945
|
/**
|
|
2946
2946
|
* The Node range rshono declares, restated in every scaffolded app's `engines` — so a CI image or a contributor
|
|
2947
2947
|
* on an older Node hears it from their package manager rather than from a stack trace.
|
|
@@ -3927,7 +3927,7 @@ function fail(message) {
|
|
|
3927
3927
|
async function main() {
|
|
3928
3928
|
const { values, positionals } = parse();
|
|
3929
3929
|
if (values.help) return console.log(HELP);
|
|
3930
|
-
if (values.version) return console.log("1.0.0-rc.
|
|
3930
|
+
if (values.version) return console.log("1.0.0-rc.20");
|
|
3931
3931
|
// A pipe, a CI job or an agent gets the defaults rather than a prompt nothing can answer. Both streams have to
|
|
3932
3932
|
// be a terminal: the prompts draw on stdout but read from stdin.
|
|
3933
3933
|
const interactive = Boolean(process.stdin.isTTY && process.stdout.isTTY) && !values.yes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rshono/create",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.20",
|
|
4
4
|
"description": "Scaffold a new rshono app — Hono + Rspack + React Server Components",
|
|
5
5
|
"author": "Lasse <lasse@lassetange.com> (https://www.lassetange.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@rspack/core": "2.2.2",
|
|
47
47
|
"@types/node": "^26.4.0",
|
|
48
48
|
"typescript": "^7.0.2",
|
|
49
|
-
"@rshono/core": "1.0.0-rc.
|
|
49
|
+
"@rshono/core": "1.0.0-rc.20"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "node scripts/codegen.mjs && node scripts/build.mjs",
|