localdb-ces6q 0.2.14 → 0.2.16

Sign up to get free protection for your applications and to get access to all the features.
package/LocalDBState.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { SmartState } from 'util-3gcvv/class/SmartState.js';
1
+ import type { SmartState } from 'util-3gcvv/class/SmartStateTypes.js';
2
2
  import type { IDBOperationHistoryItem } from './types.js';
3
3
  export interface ILocalDBStateProps {
4
4
  history: IDBOperationHistoryItem[][];
@@ -9,6 +9,6 @@ export interface ILocalDBStateProps {
9
9
  undoItem: IDBOperationHistoryItem[] | undefined;
10
10
  }
11
11
  type ComputedKeys = 'canUndo' | 'canRedo' | 'redoItem' | 'undoItem';
12
- export declare const LocalDBState: import("util-3gcvv/class/SmartState.js").SmartStateConstructor<ILocalDBStateProps, ComputedKeys, {}, import("util-3gcvv/class/SmartState.js").IEmptyInterface>;
12
+ export declare const LocalDBState: import("util-3gcvv/class/SmartStateTypes.js").SmartStateConstructor<ILocalDBStateProps, ComputedKeys, {}, import("util-3gcvv/types/types.js").IEmptyInterface>;
13
13
  export type LocalDBState = SmartState<ILocalDBStateProps, ComputedKeys, {}>;
14
14
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "localdb-ces6q",
3
- "version": "0.2.14",
3
+ "version": "0.2.16",
4
4
  "description": "TypeScript ECMAScript Module Library Template",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
@@ -11,6 +11,7 @@
11
11
  "pub": "node publish.js",
12
12
  "test": "jest",
13
13
  "test:cov": "jest --collect-coverage",
14
+ "test:cov:watch": "jest --collect-coverage --watch",
14
15
  "test:watch": "jest --watch",
15
16
  "typecheck": "tsc --noEmit",
16
17
  "typecheck:watch": "tsc --noEmit -w"
@@ -27,7 +28,7 @@
27
28
  "homepage": "https://github.com/joonhocho/localdb#readme",
28
29
  "dependencies": {
29
30
  "bplustree-mq4uj": "^0.1.0",
30
- "util-3gcvv": "^0.5.10"
31
+ "util-3gcvv": "^0.6.4"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@babel/core": "^7.21.3",
@@ -37,7 +38,7 @@
37
38
  "@types/jest": "^29.5.0",
38
39
  "@types/react": "^18.0.28",
39
40
  "jest-ts-webcompat-resolver": "^1.0.0",
40
- "prettier": "^2.8.5",
41
+ "prettier": "^2.8.6",
41
42
  "react": "^18.2.0",
42
43
  "shelljs": "^0.8.5",
43
44
  "ts-jest": "^29.0.5",