otb-ttc-bundle 1.5.3 → 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,67 @@
2
2
  "name": "otb-ttc-bundle",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 24 Jun 2022 07:03:56 GMT",
5
+ "date": "Sat, 03 Dec 2022 01:08:18 GMT",
6
+ "tag": "otb-ttc-bundle_v1.5.5",
7
+ "version": "1.5.5",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "otb-ttc-bundle",
13
+ "comment": "Bump ot-builder to v1.5.5",
14
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "otb-ttc-bundle",
19
+ "comment": "Bump @ot-builder/cli-help-shower to v1.5.5",
20
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "otb-ttc-bundle",
25
+ "comment": "Bump @ot-builder/cli-shared to v1.5.5",
26
+ "commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "date": "Sat, 09 Jul 2022 01:52:09 GMT",
33
+ "tag": "otb-ttc-bundle_v1.5.4",
34
+ "version": "1.5.4",
35
+ "comments": {
36
+ "patch": [
37
+ {
38
+ "author": "jody16888@gmail.com",
39
+ "package": "otb-ttc-bundle",
40
+ "commit": "9b9e8a2330ef867a8b7166d554fed1f23188b8b0",
41
+ "comment": "Fix typo in cli-ttc-bundle's help message"
42
+ },
43
+ {
44
+ "author": "beachball",
45
+ "package": "otb-ttc-bundle",
46
+ "comment": "Bump ot-builder to v1.5.4",
47
+ "commit": "9b9e8a2330ef867a8b7166d554fed1f23188b8b0"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "otb-ttc-bundle",
52
+ "comment": "Bump @ot-builder/cli-help-shower to v1.5.4",
53
+ "commit": "9b9e8a2330ef867a8b7166d554fed1f23188b8b0"
54
+ },
55
+ {
56
+ "author": "beachball",
57
+ "package": "otb-ttc-bundle",
58
+ "comment": "Bump @ot-builder/cli-shared to v1.5.4",
59
+ "commit": "9b9e8a2330ef867a8b7166d554fed1f23188b8b0"
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "date": "Fri, 24 Jun 2022 07:05:26 GMT",
6
66
  "tag": "otb-ttc-bundle_v1.5.3",
7
67
  "version": "1.5.3",
8
68
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,33 @@
1
1
  # Change Log - otb-ttc-bundle
2
2
 
3
- This log was last generated on Fri, 24 Jun 2022 07:03:56 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 to v1.5.5
14
+ - Bump @ot-builder/cli-help-shower to v1.5.5
15
+ - Bump @ot-builder/cli-shared to v1.5.5
16
+
17
+ ## 1.5.4
18
+
19
+ Sat, 09 Jul 2022 01:52:09 GMT
20
+
21
+ ### Patches
22
+
23
+ - Fix typo in cli-ttc-bundle's help message (jody16888@gmail.com)
24
+ - Bump ot-builder to v1.5.4
25
+ - Bump @ot-builder/cli-help-shower to v1.5.4
26
+ - Bump @ot-builder/cli-shared to v1.5.4
27
+
7
28
  ## 1.5.3
8
29
 
9
- Fri, 24 Jun 2022 07:03:56 GMT
30
+ Fri, 24 Jun 2022 07:05:26 GMT
10
31
 
11
32
  ### Patches
12
33
 
package/lib/arg-parser.js CHANGED
@@ -116,7 +116,7 @@ function displayHelp() {
116
116
  s.message(cli_help_shower_1.Style.Option `-Op`, `;`, cli_help_shower_1.Style.Option `--optimize-speed`)
117
117
  .indent(``)
118
118
  .message(`Optimize the output data arrangement for faster layout.`);
119
- s.message(cli_help_shower_1.Style.Option `-Oz`, `;`, cli_help_shower_1.Style.Option `--optimize-speed`)
119
+ s.message(cli_help_shower_1.Style.Option `-Oz`, `;`, cli_help_shower_1.Style.Option `--optimize-size`)
120
120
  .indent(``)
121
121
  .message(`Optimize the output data arrangement for smaller file size.`);
122
122
  });
@@ -1,11 +1,11 @@
1
1
  /// <reference types="node" />
2
- export declare type GlyphData = {
2
+ export type GlyphData = {
3
3
  hash: string;
4
4
  buffer: Buffer;
5
5
  };
6
- export declare type GlyphSharingMap = Map<string, Buffer>;
6
+ export type GlyphSharingMap = Map<string, Buffer>;
7
7
  export declare function pushGlyphs(sink: GlyphSharingMap[], fid: number, gds: GlyphData[], sharing: number[][]): void;
8
- export declare type DataBlockBuildResults = {
8
+ export type DataBlockBuildResults = {
9
9
  dataBlock: Buffer;
10
10
  offsets: number[];
11
11
  saGidMaps: Map<string, number>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "otb-ttc-bundle",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "bin": {
5
5
  "otb-ttc-bundle": "./bin/otb-ttc-bundle"
6
6
  },
@@ -27,9 +27,9 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "tslib": "^2.0.0",
30
- "ot-builder": "1.5.3",
31
- "@ot-builder/cli-help-shower": "1.5.3",
32
- "@ot-builder/cli-shared": "1.5.3"
30
+ "ot-builder": "1.5.5",
31
+ "@ot-builder/cli-help-shower": "1.5.5",
32
+ "@ot-builder/cli-shared": "1.5.5"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/jest": "^26.0.23",