@mulanjs/mulanjs 1.0.1-dev.20260218164416 → 1.0.1-dev.20260218165325

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 +9 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,19 +15,22 @@ MulanJS is a high-performance, next-generation web framework designed to bridge
15
15
  ### Stable Release
16
16
  > Coming soon!
17
17
 
18
- ### Development Release (Latest)
19
- To install the latest development version of MulanJS (e.g., `1.0.1-dev.20260218163106`):
18
+ ### 🚧 Development Release (Bleeding Edge)
20
19
 
20
+ Want to try the latest features before they are stable? Use the development build.
21
+
22
+ **Option A: Create a New Project (Recommended)**
21
23
  ```bash
22
- npm install @mulanjs/mulanjs@dev
24
+ npx @mulanjs/mulanjs@dev init my-project
23
25
  ```
24
26
 
25
- To create a new project using the latest dev CLI:
26
-
27
+ **Option B: Install in Existing Project**
27
28
  ```bash
28
- npx @mulanjs/mulanjs@dev init my-app
29
+ npm install @mulanjs/mulanjs@dev
29
30
  ```
30
31
 
32
+ *Note: The dev version is updated frequently. You can check the latest version number by running `npm view @mulanjs/mulanjs dist-tags.dev`.*
33
+
31
34
  ## ⚡ Core Features
32
35
 
33
36
  - **Signal Reactivity Engine**: Fine-grained reactivity that tracks exact dependencies, eliminating the need for a Virtual DOM.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulanjs/mulanjs",
3
- "version": "1.0.1-dev.20260218164416",
3
+ "version": "1.0.1-dev.20260218165325",
4
4
  "description": "A powerful, secure, and enterprise-grade JavaScript framework.",
5
5
  "main": "dist/mulan.js",
6
6
  "module": "dist/mulan.esm.js",