@rshono/create 1.0.0-rc.11 → 1.0.0-rc.12
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/templates/base/README.md +1 -1
- package/templates/base/_gitignore +1 -0
package/dist/api.mjs
CHANGED
|
@@ -154,7 +154,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
154
154
|
|
|
155
155
|
;// CONCATENATED MODULE: ./src/generated/framework.ts
|
|
156
156
|
// GENERATED by scripts/codegen.mjs from packages/core — do not edit. Run `pnpm --filter @rshono/create codegen`.
|
|
157
|
-
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.
|
|
157
|
+
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.12';
|
|
158
158
|
/**
|
|
159
159
|
* The Node range rshono itself declares, restated in every scaffolded app's `engines` — so a CI image
|
|
160
160
|
* or a contributor on an older Node hears it from their package manager rather than from a stack trace.
|
package/dist/cli.mjs
CHANGED
|
@@ -2943,7 +2943,7 @@ function hasGit(cwd) {
|
|
|
2943
2943
|
|
|
2944
2944
|
;// CONCATENATED MODULE: ./src/generated/framework.ts
|
|
2945
2945
|
// GENERATED by scripts/codegen.mjs from packages/core — do not edit. Run `pnpm --filter @rshono/create codegen`.
|
|
2946
|
-
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.
|
|
2946
|
+
/** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.12';
|
|
2947
2947
|
/**
|
|
2948
2948
|
* The Node range rshono itself declares, restated in every scaffolded app's `engines` — so a CI image
|
|
2949
2949
|
* or a contributor on an older Node hears it from their package manager rather than from a stack trace.
|
|
@@ -3969,7 +3969,7 @@ function fail(message) {
|
|
|
3969
3969
|
async function main() {
|
|
3970
3970
|
const { values, positionals } = parse();
|
|
3971
3971
|
if (values.help) return console.log(HELP);
|
|
3972
|
-
if (values.version) return console.log("1.0.0-rc.
|
|
3972
|
+
if (values.version) return console.log("1.0.0-rc.12");
|
|
3973
3973
|
// A pipe, a CI job or an agent gets the defaults rather than a prompt nothing can answer. Both
|
|
3974
3974
|
// streams have to be a terminal: the prompts draw on stdout but *read from stdin*, so
|
|
3975
3975
|
// `echo | npx @rshono/create` would otherwise ask a question with nothing behind the keyboard.
|
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.12",
|
|
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": "ISC",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@rspack/core": "2.1.7",
|
|
47
47
|
"@types/node": "^26.1.1",
|
|
48
48
|
"typescript": "^7.0.2",
|
|
49
|
-
"@rshono/core": "1.0.0-rc.
|
|
49
|
+
"@rshono/core": "1.0.0-rc.12"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "node scripts/codegen.mjs && node scripts/build.mjs",
|
package/templates/base/README.md
CHANGED
|
@@ -37,4 +37,4 @@ Change `deploy` in `rshono.config.ts` to target somewhere else, or build for one
|
|
|
37
37
|
file: `rshono build --deploy vercel`, or `RSHONO_DEPLOY=vercel` in CI. `dev` always runs the Node dev
|
|
38
38
|
server, whatever the target — it is a property of the build, not of developing.
|
|
39
39
|
|
|
40
|
-
Every target, and what each one needs: <https://www.rshono.com/docs/deployment>
|
|
40
|
+
Every deployment target, and what each one needs: <https://www.rshono.com/docs/deployment>
|