react-elmish 7.3.1 → 7.3.2
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/dist/Common.js +4 -4
- package/dist/ElmComponent.js +30 -31
- package/dist/ErrorHandling.js +1 -1
- package/dist/Init.js +1 -1
- package/dist/Testing/createModelAndProps.js +7 -7
- package/dist/Testing/createUpdateArgsFactory.js +3 -3
- package/dist/Testing/execCmd.js +7 -7
- package/dist/Testing/execSubscription.js +5 -5
- package/dist/Testing/getCreateUpdateArgs.js +6 -6
- package/dist/Testing/getUpdateFn.js +14 -14
- package/dist/Testing/index.js +1 -1
- package/dist/Testing/initAndExecCmd.js +11 -11
- package/dist/Testing/renderWithModel.js +3 -3
- package/dist/Types.js +1 -1
- package/dist/cmd.js +5 -5
- package/dist/createDefer.js +3 -3
- package/dist/fakeOptions.js +1 -1
- package/dist/index.js +1 -1
- package/dist/useElmish.js +11 -11
- package/package.json +16 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-elmish",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.2",
|
|
4
4
|
"description": "Elmish for React using Typescript",
|
|
5
5
|
"author": "atheck",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,30 +11,32 @@
|
|
|
11
11
|
"test": "jest --coverage",
|
|
12
12
|
"test:watch": "jest --watch --coverage",
|
|
13
13
|
"lint": "biome lint src --max-diagnostics 200 && npx eslint \"src/**/*.ts[x]\"",
|
|
14
|
-
"update": "npx -y npm-check-updates -i --install always",
|
|
14
|
+
"update": "npx -y npm-check-updates -i --install always && npm update",
|
|
15
15
|
"semantic-release": "semantic-release"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"react": ">=16.8.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@babel/cli": "7.
|
|
22
|
-
"@babel/core": "7.24.
|
|
21
|
+
"@babel/cli": "7.24.7",
|
|
22
|
+
"@babel/core": "7.24.7",
|
|
23
23
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
24
|
-
"@babel/preset-env": "7.24.
|
|
25
|
-
"@babel/preset-react": "7.
|
|
26
|
-
"@babel/preset-typescript": "7.
|
|
27
|
-
"@biomejs/biome": "1.
|
|
28
|
-
"@testing-library/
|
|
24
|
+
"@babel/preset-env": "7.24.7",
|
|
25
|
+
"@babel/preset-react": "7.24.7",
|
|
26
|
+
"@babel/preset-typescript": "7.24.7",
|
|
27
|
+
"@biomejs/biome": "1.8.0",
|
|
28
|
+
"@testing-library/dom": "10.1.0",
|
|
29
|
+
"@testing-library/react": "16.0.0",
|
|
29
30
|
"@types/jest": "29.5.12",
|
|
30
|
-
"@types/react": "18.
|
|
31
|
+
"@types/react": "18.3.3",
|
|
32
|
+
"@types/react-dom": "18.3.0",
|
|
31
33
|
"eslint": "8.57.0",
|
|
32
|
-
"eslint-config-heck": "2.
|
|
34
|
+
"eslint-config-heck": "2.11.2",
|
|
33
35
|
"jest": "29.7.0",
|
|
34
36
|
"jest-environment-jsdom": "29.7.0",
|
|
35
|
-
"semantic-release": "
|
|
36
|
-
"ts-jest": "29.1.
|
|
37
|
-
"typescript": "5.4.
|
|
37
|
+
"semantic-release": "24.0.0",
|
|
38
|
+
"ts-jest": "29.1.4",
|
|
39
|
+
"typescript": "5.4.5"
|
|
38
40
|
},
|
|
39
41
|
"homepage": "https://github.com/atheck/react-elmish",
|
|
40
42
|
"repository": {
|