@xmachines/play-signals 1.1.0 → 2.0.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 +1 -2
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
TC39 Signals polyfill for XMachines — fine-grained reactive state primitives that enable glitch-free, subscription-free state propagation in the Play Architecture.
|
|
4
4
|
|
|
5
|
-
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://www.npmjs.com/package/@xmachines/play-signals)
|
|
5
|
+
[](https://opensource.org/licenses/MIT) [](https://www.npmjs.com/package/@xmachines/play-signals)
|
|
7
6
|
|
|
8
7
|
Part of the [xmachines-js monorepo](../../README.md).
|
|
9
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmachines/play-signals",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TC39 Signals polyfill for XMachines - Fine-grained reactive state primitives",
|
|
6
6
|
"keywords": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"author": "XMachines Contributors",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+
|
|
18
|
+
"url": "git+https://gitlab.com/xmachin-es/xmachines-js.git",
|
|
19
19
|
"directory": "packages/play-signals"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
@@ -30,14 +30,15 @@
|
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
|
32
32
|
"types": "./dist/index.d.ts",
|
|
33
|
-
"
|
|
34
|
-
}
|
|
33
|
+
"default": "./dist/index.js"
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
35
36
|
},
|
|
36
37
|
"publishConfig": {
|
|
37
38
|
"access": "public"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
|
-
"build": "tsc --build",
|
|
41
|
+
"build": "vite build && tsc --build",
|
|
41
42
|
"clean": "rm -rf dist *.tsbuildinfo coverage .vitest-attachments test/browser/__screenshots__ node_modules/.svelte2tsx-* node_modules/.vite*",
|
|
42
43
|
"test": "vitest",
|
|
43
44
|
"lint": "oxlint .",
|
|
@@ -51,9 +52,10 @@
|
|
|
51
52
|
"devDependencies": {
|
|
52
53
|
"@testing-library/jest-dom": "^6.9.1",
|
|
53
54
|
"@types/node": "^26.2.0",
|
|
54
|
-
"@vitest/browser-playwright": "^4.1.
|
|
55
|
+
"@vitest/browser-playwright": "^4.1.11",
|
|
55
56
|
"oxfmt": "^0.64.0",
|
|
56
57
|
"oxlint": "^1.79.0",
|
|
58
|
+
"vite": "^8.0.10",
|
|
57
59
|
"vitest": "^4.1.11"
|
|
58
60
|
},
|
|
59
61
|
"engines": {
|