@hamak/ui-store-api 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 +7 -15
package/dist/es2015/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* Public interfaces, types, and tokens for Redux state management
|
|
3
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store/api
|
|
5
4
|
*/
|
|
6
5
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
6
|
if (k2 === undefined) k2 = k;
|
|
@@ -18,8 +17,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
17
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19
18
|
};
|
|
20
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
|
|
22
|
-
__exportStar(require("
|
|
23
|
-
__exportStar(require("./tokens"), exports);
|
|
24
|
-
__exportStar(require("./fs"), exports);
|
|
25
|
-
__exportStar(require("./autosave"), exports);
|
|
20
|
+
console.warn('[@hamak/ui-store-api] This package is deprecated. Please migrate to @hamak/ui-store/api');
|
|
21
|
+
__exportStar(require("@hamak/ui-store/api"), exports);
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Public interfaces, types, and tokens for Redux state management
|
|
2
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store/api
|
|
4
3
|
*/
|
|
5
|
-
export * from '
|
|
6
|
-
export * from './api';
|
|
7
|
-
export * from './tokens';
|
|
8
|
-
export * from './fs';
|
|
9
|
-
export * from './autosave';
|
|
4
|
+
export * from '@hamak/ui-store/api';
|
|
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,qBAAqB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Public interfaces, types, and tokens for Redux state management
|
|
2
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-store/api
|
|
4
3
|
*/
|
|
5
|
-
|
|
6
|
-
export * from '
|
|
7
|
-
export * from './tokens';
|
|
8
|
-
export * from './fs';
|
|
9
|
-
export * from './autosave';
|
|
4
|
+
console.warn('[@hamak/ui-store-api] This package is deprecated. Please migrate to @hamak/ui-store/api');
|
|
5
|
+
export * from '@hamak/ui-store/api';
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/ui-store-api",
|
|
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/api instead",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -18,30 +18,22 @@
|
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
|
+
"deprecated": "Use @hamak/ui-store/api 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
|
-
"require": "./dist/es2015/index.js",
|
|
32
30
|
"default": "./dist/index.js"
|
|
33
|
-
},
|
|
34
|
-
"./es2015": {
|
|
35
|
-
"require": "./dist/es2015/index.js",
|
|
36
|
-
"default": "./dist/es2015/index.js"
|
|
37
31
|
}
|
|
38
32
|
},
|
|
39
33
|
"dependencies": {
|
|
40
|
-
"@hamak/
|
|
41
|
-
"redux": "^5.0.1"
|
|
34
|
+
"@hamak/ui-store": "*"
|
|
42
35
|
},
|
|
43
36
|
"devDependencies": {
|
|
44
|
-
"typescript": "~5.4.0"
|
|
45
|
-
"vitest": "^2.0.0"
|
|
37
|
+
"typescript": "~5.4.0"
|
|
46
38
|
}
|
|
47
39
|
}
|