@rshono/create 1.0.0-rc.8 → 1.0.0-rc.9

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 CHANGED
@@ -57,6 +57,7 @@ tsconfig.json strict, with @/* → ./src/*
57
57
  .env committed defaults; secrets go in .env.local
58
58
  .gitignore plus whatever each chosen feature adds, under a heading naming it
59
59
  README.md the app's own commands, layout and deploy step
60
+ AGENTS.md where an agent finds the framework docs; CLAUDE.md imports it
60
61
  public/ favicon.svg, robots.txt
61
62
  src/routes.ts one page, a 404 and a 500
62
63
  src/server.ts error reporting, trailing-slash and old-path redirects, AppType
package/dist/api.mjs CHANGED
@@ -79,7 +79,7 @@ __webpack_require__.d(__webpack_exports__, {
79
79
 
80
80
  ;// CONCATENATED MODULE: ./src/generated/framework.ts
81
81
  // GENERATED by scripts/codegen.mjs from packages/core — do not edit. Run `pnpm --filter @rshono/create codegen`.
82
- /** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.8';
82
+ /** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.9';
83
83
  /**
84
84
  * The Node range rshono itself declares, restated in every scaffolded app's `engines` — so a CI image
85
85
  * 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.8';
2946
+ /** The framework release a scaffolded app is pinned to: this package and rshono ship together. */ const RSHONO_VERSION = '1.0.0-rc.9';
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.
@@ -3821,7 +3821,7 @@ function fail(message) {
3821
3821
  async function main() {
3822
3822
  const { values, positionals } = parse();
3823
3823
  if (values.help) return console.log(HELP);
3824
- if (values.version) return console.log("1.0.0-rc.8");
3824
+ if (values.version) return console.log("1.0.0-rc.9");
3825
3825
  // A pipe, a CI job or an agent gets the defaults rather than a prompt nothing can answer. Both
3826
3826
  // streams have to be a terminal: the prompts draw on stdout but *read from stdin*, so
3827
3827
  // `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.8",
3
+ "version": "1.0.0-rc.9",
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.8"
49
+ "@rshono/core": "1.0.0-rc.9"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "node scripts/codegen.mjs && node scripts/build.mjs",
@@ -0,0 +1,5 @@
1
+ # {{PROJECT_NAME}}
2
+
3
+ An [rshono](https://www.rshono.com) app — Hono, Rspack and React Server Components.
4
+
5
+ Read the framework's documentation before guessing at a convention: <https://www.rshono.com/llms.txt>.
@@ -0,0 +1,5 @@
1
+ # {{PROJECT_NAME}}
2
+
3
+ Instructions live in AGENTS.md, so that every agent reads the same file:
4
+
5
+ @AGENTS.md