ccstate 4.1.0 → 4.2.0

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
@@ -15,9 +15,9 @@ The name of CCState comes from three basic types: `Computed`, `Command`, and `St
15
15
 
16
16
  ## Quick Features
17
17
 
18
+ - ✈️ Intuitive async computation: using async/await or try/catch to process async flow as regular JavaScript without any additional concept
18
19
  - 💯 Simple & Intuitive: Crystal-clear API design with just three types and two operations
19
20
  - ✅ Rock-solid Reliability: Comprehensive test coverage reaching 100% branch coverage
20
- - ✈️ Intuitive async computation: using async/await or try/catch to process async flow as regular JavaScript without any additional concept
21
21
  - 💡 Framework Agnostic: Seamlessly works with [React](docs/react.md), [Vue](docs/vue.md), [Solid.js](docs/solid.md), [Vanilla](docs/vanilla.md), or any UI framework
22
22
 
23
23
  ## Getting Started
@@ -87,7 +87,7 @@ export default function App() {
87
87
  }
88
88
  ```
89
89
 
90
- That's it! [Click here to see the full example](https://codesandbox.io/p/sandbox/cr3xg6).
90
+ That's it! [Click here to see the full example](https://stackblitz.com/edit/vitejs-vite-rert8c7a?file=src%2FApp.tsx).
91
91
 
92
92
  Through these examples, you should have understood the basic usage of CCState. Next, you can read to learn about CCState's core APIs.
93
93