@reckona/mreact 0.0.177 → 0.0.179

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,8 +4,24 @@
4
4
  re-exports the compatibility runtime and JSX runtimes under the package name
5
5
  used by application code.
6
6
 
7
+ ## New Apps
8
+
9
+ For app-router projects, start with the project generator. It installs the router, configures TypeScript, and creates a working route structure:
10
+
11
+ ```bash
12
+ npx @reckona/create-mreact-app my-app --template basic --src-dir --pm pnpm
13
+ ```
14
+
7
15
  ## Installation
8
16
 
17
+ Install the runtime packages directly when you are wiring Mreact into an existing project:
18
+
19
+ ```bash
20
+ pnpm add @reckona/mreact @reckona/mreact-dom
21
+ ```
22
+
23
+ Then configure TypeScript's automatic JSX runtime:
24
+
9
25
  ```json
10
26
  {
11
27
  "compilerOptions": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reckona/mreact",
3
- "version": "0.0.177",
3
+ "version": "0.0.179",
4
4
  "description": "React-flavored public runtime entrypoint for mreact.",
5
5
  "keywords": [
6
6
  "jsx",
@@ -56,6 +56,6 @@
56
56
  "access": "public"
57
57
  },
58
58
  "dependencies": {
59
- "@reckona/mreact-compat": "0.0.177"
59
+ "@reckona/mreact-compat": "0.0.179"
60
60
  }
61
61
  }