muya 2.0.0-beta.2 → 2.0.0-beta.3

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 (27) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
  3. /package/{packages/core → src}/__tests__/bench.test.tsx +0 -0
  4. /package/{packages/core → src}/__tests__/create-async.test.ts +0 -0
  5. /package/{packages/core → src}/__tests__/create.test.tsx +0 -0
  6. /package/{packages/core → src}/__tests__/subscriber.test.tsx +0 -0
  7. /package/{packages/core → src}/__tests__/test-utils.ts +0 -0
  8. /package/{packages/core → src}/__tests__/use-async.test.tsx +0 -0
  9. /package/{packages/core → src}/__tests__/use.test.tsx +0 -0
  10. /package/{packages/core → src}/create.ts +0 -0
  11. /package/{packages/core → src}/debug/development-tools.ts +0 -0
  12. /package/{packages/core → src}/index.ts +0 -0
  13. /package/{packages/core → src}/subscriber.ts +0 -0
  14. /package/{packages/core → src}/types.ts +0 -0
  15. /package/{packages/core → src}/use.ts +0 -0
  16. /package/{packages/core → src}/utils/__tests__/context.test.ts +0 -0
  17. /package/{packages/core → src}/utils/__tests__/is.test.ts +0 -0
  18. /package/{packages/core → src}/utils/__tests__/shallow.test.ts +0 -0
  19. /package/{packages/core → src}/utils/__tests__/sub-memo.test.ts +0 -0
  20. /package/{packages/core → src}/utils/common.ts +0 -0
  21. /package/{packages/core → src}/utils/create-context.ts +0 -0
  22. /package/{packages/core → src}/utils/create-emitter.ts +0 -0
  23. /package/{packages/core → src}/utils/global-scheduler.ts +0 -0
  24. /package/{packages/core → src}/utils/is.ts +0 -0
  25. /package/{packages/core → src}/utils/scheduler.ts +0 -0
  26. /package/{packages/core → src}/utils/shallow.ts +0 -0
  27. /package/{packages/core → src}/utils/sub-memo.ts +0 -0
package/README.md CHANGED
@@ -32,19 +32,19 @@ This allows you to write derived state as plain functions, making your code more
32
32
  ## 📦 Installation
33
33
 
34
34
  ```bash
35
- npm install muya@2.0.0-beta.1
35
+ npm install muya@2.0.0-beta.2
36
36
  ```
37
37
 
38
38
  Or using Yarn:
39
39
 
40
40
  ```bash
41
- yarn add muya@2.0.0-beta.1
41
+ yarn add muya@2.0.0-beta.2
42
42
  ```
43
43
 
44
44
  Or using Bun:
45
45
 
46
46
  ```bash
47
- bun add muya@2.0.0-beta.1
47
+ bun add muya@2.0.0-beta.2
48
48
  ```
49
49
 
50
50
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muya",
3
- "version": "2.0.0-beta.2",
3
+ "version": "2.0.0-beta.3",
4
4
  "author": "samuel.gjabel@gmail.com",
5
5
  "description": "👀 Another React state management library",
6
6
  "license": "MIT",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes