@hamak/ui-store-impl 0.5.0 → 0.5.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/es2015/index.js +3 -7
- package/dist/index.d.ts +2 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -7
- package/package.json +8 -24
package/dist/es2015/index.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Concrete implementations of Redux store management
|
|
2
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store
|
|
4
3
|
*/
|
|
5
|
-
|
|
6
|
-
export * from '
|
|
7
|
-
export * from './plugin';
|
|
8
|
-
export * from './fs';
|
|
9
|
-
export * from './autosave';
|
|
4
|
+
console.warn('[@hamak/ui-store-impl] This package is deprecated. Please migrate to @hamak/ui-store');
|
|
5
|
+
export * from '@hamak/ui-store';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Concrete implementations of Redux store management
|
|
2
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store
|
|
4
3
|
*/
|
|
5
|
-
export * from '
|
|
6
|
-
export * from './middleware';
|
|
7
|
-
export * from './plugin';
|
|
8
|
-
export * from './fs';
|
|
9
|
-
export * from './autosave';
|
|
4
|
+
export * from '@hamak/ui-store';
|
|
10
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,cAAc,iBAAiB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Concrete implementations of Redux store management
|
|
2
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store
|
|
4
3
|
*/
|
|
5
|
-
|
|
6
|
-
export * from '
|
|
7
|
-
export * from './plugin';
|
|
8
|
-
export * from './fs';
|
|
9
|
-
export * from './autosave';
|
|
4
|
+
console.warn('[@hamak/ui-store-impl] This package is deprecated. Please migrate to @hamak/ui-store');
|
|
5
|
+
export * from '@hamak/ui-store';
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/ui-store-impl",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "DEPRECATED: Use @hamak/ui-store instead",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -18,38 +18,22 @@
|
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
|
+
"deprecated": "Use @hamak/ui-store instead",
|
|
21
22
|
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.json
|
|
23
|
-
"clean": "rm -rf dist"
|
|
24
|
-
"test": "vitest run",
|
|
25
|
-
"test:watch": "vitest"
|
|
23
|
+
"build": "tsc -p tsconfig.json",
|
|
24
|
+
"clean": "rm -rf dist"
|
|
26
25
|
},
|
|
27
26
|
"exports": {
|
|
28
27
|
".": {
|
|
29
28
|
"types": "./dist/index.d.ts",
|
|
30
29
|
"import": "./dist/index.js",
|
|
31
|
-
"default": "./dist/index.js"
|
|
32
|
-
"legacy": "./dist/es2015/index.js"
|
|
33
|
-
},
|
|
34
|
-
"./es2015": {
|
|
35
|
-
"import": "./dist/es2015/index.js",
|
|
36
|
-
"default": "./dist/es2015/index.js"
|
|
30
|
+
"default": "./dist/index.js"
|
|
37
31
|
}
|
|
38
32
|
},
|
|
39
33
|
"dependencies": {
|
|
40
|
-
"@hamak/
|
|
41
|
-
"@hamak/ui-store-api": "*",
|
|
42
|
-
"@hamak/ui-store-spi": "*",
|
|
43
|
-
"@hamak/microkernel-api": "*",
|
|
44
|
-
"@hamak/microkernel-spi": "*",
|
|
45
|
-
"@reduxjs/toolkit": "^2.0.0",
|
|
46
|
-
"immer": "^10.0.0",
|
|
47
|
-
"redux": "^5.0.1",
|
|
48
|
-
"redux-thunk": "^3.1.0"
|
|
34
|
+
"@hamak/ui-store": "*"
|
|
49
35
|
},
|
|
50
36
|
"devDependencies": {
|
|
51
|
-
"typescript": "~5.4.0"
|
|
52
|
-
"vitest": "^2.0.0",
|
|
53
|
-
"@types/node": "^20.0.0"
|
|
37
|
+
"typescript": "~5.4.0"
|
|
54
38
|
}
|
|
55
39
|
}
|