@voxgig/model 0.12.1 → 0.13.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.
@@ -10,7 +10,7 @@ interface BuildAction {
10
10
  path: string;
11
11
  build: Builder;
12
12
  }
13
- declare type Builder = (build: Build) => Promise<BuildResult>;
13
+ type Builder = (build: Build) => Promise<BuildResult>;
14
14
  interface Spec {
15
15
  src: string;
16
16
  path?: string;
@@ -1,4 +1,4 @@
1
- declare type DiveMapper = (path: any[], leaf: any) => any[];
1
+ type DiveMapper = (path: any[], leaf: any) => any[];
2
2
  declare function dive(node: any, depth?: number | DiveMapper, mapper?: DiveMapper): any[];
3
3
  declare function joins(arr: any[], ...seps: string[]): string;
4
4
  export { dive, joins, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxgig/model",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "main": "dist/model.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/model.d.ts",
@@ -41,15 +41,15 @@
41
41
  "LICENSE"
42
42
  ],
43
43
  "dependencies": {
44
- "aontu": "^0.6.1",
44
+ "aontu": "^0.7.0",
45
45
  "chokidar": "^3.5.3"
46
46
  },
47
47
  "devDependencies": {
48
- "@types/jest": "^29.0.0",
49
- "esbuild": "^0.15.7",
48
+ "@types/jest": "^29.2.4",
49
+ "esbuild": "^0.16.12",
50
50
  "esbuild-jest": "^0.5.0",
51
- "jest": "^29.0.2",
52
- "ts-jest": "^29.0.0",
53
- "typescript": "^4.8.3"
51
+ "jest": "^29.3.1",
52
+ "es-jest": "^2.1.0",
53
+ "typescript": "^4.9.4"
54
54
  }
55
55
  }