@ot-builder/cli-proc 1.5.4 → 1.5.5

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/CHANGELOG.json CHANGED
@@ -2,7 +2,58 @@
2
2
  "name": "@ot-builder/cli-proc",
3
3
  "entries": [
4
4
  {
5
- "date": "Sat, 09 Jul 2022 01:50:43 GMT",
5
+ "date": "Sat, 03 Dec 2022 01:08:18 GMT",
6
+ "tag": "@ot-builder/cli-proc_v1.5.5",
7
+ "version": "1.5.5",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@ot-builder/cli-proc",
13
+ "comment": "Bump @ot-builder/io-bin-font to v1.5.5",
14
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@ot-builder/cli-proc",
19
+ "comment": "Bump @ot-builder/primitive to v1.5.5",
20
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@ot-builder/cli-proc",
25
+ "comment": "Bump @ot-builder/common-impl to v1.5.5",
26
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@ot-builder/cli-proc",
31
+ "comment": "Bump @ot-builder/rectify to v1.5.5",
32
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@ot-builder/cli-proc",
37
+ "comment": "Bump @ot-builder/trace to v1.5.5",
38
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@ot-builder/cli-proc",
43
+ "comment": "Bump @ot-builder/prelude to v1.5.5",
44
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@ot-builder/cli-proc",
49
+ "comment": "Bump @ot-builder/ot to v1.5.5",
50
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "date": "Sat, 09 Jul 2022 01:52:09 GMT",
6
57
  "tag": "@ot-builder/cli-proc_v1.5.4",
7
58
  "version": "1.5.4",
8
59
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,26 @@
1
1
  # Change Log - @ot-builder/cli-proc
2
2
 
3
- This log was last generated on Sat, 09 Jul 2022 01:50:43 GMT and should not be manually modified.
3
+ This log was last generated on Sat, 03 Dec 2022 01:08:18 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.5.5
8
+
9
+ Sat, 03 Dec 2022 01:08:18 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @ot-builder/io-bin-font to v1.5.5
14
+ - Bump @ot-builder/primitive to v1.5.5
15
+ - Bump @ot-builder/common-impl to v1.5.5
16
+ - Bump @ot-builder/rectify to v1.5.5
17
+ - Bump @ot-builder/trace to v1.5.5
18
+ - Bump @ot-builder/prelude to v1.5.5
19
+ - Bump @ot-builder/ot to v1.5.5
20
+
7
21
  ## 1.5.4
8
22
 
9
- Sat, 09 Jul 2022 01:50:43 GMT
23
+ Sat, 09 Jul 2022 01:52:09 GMT
10
24
 
11
25
  ### Patches
12
26
 
@@ -1,7 +1,7 @@
1
- export declare type Span = [number, number];
2
- export declare type Zone = Span[];
3
- export declare type SrcZone<S> = [Zone, S];
4
- export declare type DstZone<S> = [Zone, S[]];
1
+ export type Span = [number, number];
2
+ export type Zone = Span[];
3
+ export type SrcZone<S> = [Zone, S];
4
+ export type DstZone<S> = [Zone, S[]];
5
5
  export declare function diceZones<S>(dn: number, zoneSets: SrcZone<S>[]): IterableIterator<DstZone<S>>;
6
6
  export declare function hashZone(zone: Zone): string;
7
7
  //# sourceMappingURL=zone-dicing.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as Ot from "@ot-builder/ot";
2
- export declare type MergeOptions = {
2
+ export type MergeOptions = {
3
3
  preferOverride?: boolean;
4
4
  };
5
5
  export declare function mergeFonts<GS extends Ot.GlyphStore, GS2 extends Ot.GlyphStore>(basis: Ot.Font<GS>, override: Ot.Font<GS2>, gsf: Ot.GlyphStoreFactory<GS>, opt?: MergeOptions): void;
@@ -1,5 +1,5 @@
1
1
  import * as Ot from "@ot-builder/ot";
2
- export declare type ShareGlyphSetOptions = {
2
+ export type ShareGlyphSetOptions = {
3
3
  unifyGlyphList?: boolean;
4
4
  };
5
5
  export declare class GlyphSharer<GS extends Ot.GlyphStore> {
@@ -14,7 +14,7 @@ export declare class GlyphSharer<GS extends Ot.GlyphStore> {
14
14
  getGlyphList(): Ot.Glyph[];
15
15
  }
16
16
  export declare function shareGlyphSet<GS extends Ot.GlyphStore>(fonts: Ot.Font<GS>[], gsf: Ot.GlyphStoreFactory<GS>, options?: ShareGlyphSetOptions): void;
17
- export declare type GlyphUnificationResults = {
17
+ export type GlyphUnificationResults = {
18
18
  originalNames: WeakMap<Ot.Glyph, string>;
19
19
  };
20
20
  //# sourceMappingURL=share-glyph-set.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ot-builder/cli-proc",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,13 +24,13 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "tslib": "^2.0.0",
27
- "@ot-builder/io-bin-font": "1.5.4",
28
- "@ot-builder/primitive": "1.5.4",
29
- "@ot-builder/common-impl": "1.5.4",
30
- "@ot-builder/rectify": "1.5.4",
31
- "@ot-builder/trace": "1.5.4",
32
- "@ot-builder/prelude": "1.5.4",
33
- "@ot-builder/ot": "1.5.4"
27
+ "@ot-builder/io-bin-font": "1.5.5",
28
+ "@ot-builder/primitive": "1.5.5",
29
+ "@ot-builder/common-impl": "1.5.5",
30
+ "@ot-builder/rectify": "1.5.5",
31
+ "@ot-builder/trace": "1.5.5",
32
+ "@ot-builder/prelude": "1.5.5",
33
+ "@ot-builder/ot": "1.5.5"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/jest": "^26.0.23",