@rshono/create 1.0.0-rc.16 → 1.0.0-rc.17
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 +2 -2
- package/dist/cli.mjs +3 -3
- package/package.json +3 -3
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.17';
|
|
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.
|
|
@@ -156,7 +156,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
156
156
|
* The dependency versions rshono is tested against, copied from its own manifest. Exact where it is exact:
|
|
157
157
|
* React's RSC internals are coupled across builds, and a generated app has no workspace overrides.
|
|
158
158
|
*/ const FRAMEWORK_DEPS = {
|
|
159
|
-
hono: '^4.13.
|
|
159
|
+
hono: '^4.13.5',
|
|
160
160
|
react: '19.2.8',
|
|
161
161
|
'react-dom': '19.2.8',
|
|
162
162
|
typescript: '^7.0.2',
|
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.17';
|
|
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.
|
|
@@ -2950,7 +2950,7 @@ function hasGit(cwd) {
|
|
|
2950
2950
|
* The dependency versions rshono is tested against, copied from its own manifest. Exact where it is exact:
|
|
2951
2951
|
* React's RSC internals are coupled across builds, and a generated app has no workspace overrides.
|
|
2952
2952
|
*/ const FRAMEWORK_DEPS = {
|
|
2953
|
-
hono: '^4.13.
|
|
2953
|
+
hono: '^4.13.5',
|
|
2954
2954
|
react: '19.2.8',
|
|
2955
2955
|
'react-dom': '19.2.8',
|
|
2956
2956
|
typescript: '^7.0.2',
|
|
@@ -3920,7 +3920,7 @@ function fail(message) {
|
|
|
3920
3920
|
async function main() {
|
|
3921
3921
|
const { values, positionals } = parse();
|
|
3922
3922
|
if (values.help) return console.log(HELP);
|
|
3923
|
-
if (values.version) return console.log("1.0.0-rc.
|
|
3923
|
+
if (values.version) return console.log("1.0.0-rc.17");
|
|
3924
3924
|
// A pipe, a CI job or an agent gets the defaults rather than a prompt nothing can answer. Both streams have to
|
|
3925
3925
|
// be a terminal: the prompts draw on stdout but read from stdin.
|
|
3926
3926
|
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.17",
|
|
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",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@clack/prompts": "^1.7.0",
|
|
46
|
-
"@rspack/core": "2.
|
|
46
|
+
"@rspack/core": "2.2.0",
|
|
47
47
|
"@types/node": "^26.2.0",
|
|
48
48
|
"typescript": "^7.0.2",
|
|
49
|
-
"@rshono/core": "1.0.0-rc.
|
|
49
|
+
"@rshono/core": "1.0.0-rc.17"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "node scripts/codegen.mjs && node scripts/build.mjs",
|