ot-builder 1.7.8 → 1.8.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.
package/lib/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export * as Ot from "@ot-builder/ot";
4
4
  export { Data, Sigma } from "@ot-builder/prelude";
5
5
  export * as Rectify from "@ot-builder/rectify";
6
6
  export * as Trace from "@ot-builder/trace";
7
- import * as PrimitiveLib from "@ot-builder/primitive";
7
+ import type * as PrimitiveLib from "@ot-builder/primitive";
8
8
  export type Tag = PrimitiveLib.Tag;
9
9
  export type UInt8 = PrimitiveLib.UInt8;
10
10
  export type UInt16 = PrimitiveLib.UInt16;
package/lib/index.js CHANGED
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Trace = exports.Rectify = exports.Sigma = exports.Data = exports.Ot = exports.FontIo = exports.CliProc = void 0;
4
- exports.CliProc = require("@ot-builder/cli-proc");
5
- exports.FontIo = require("@ot-builder/io-bin-font");
6
- exports.Ot = require("@ot-builder/ot");
4
+ const tslib_1 = require("tslib");
5
+ exports.CliProc = tslib_1.__importStar(require("@ot-builder/cli-proc"));
6
+ exports.FontIo = tslib_1.__importStar(require("@ot-builder/io-bin-font"));
7
+ exports.Ot = tslib_1.__importStar(require("@ot-builder/ot"));
7
8
  var prelude_1 = require("@ot-builder/prelude");
8
9
  Object.defineProperty(exports, "Data", { enumerable: true, get: function () { return prelude_1.Data; } });
9
10
  Object.defineProperty(exports, "Sigma", { enumerable: true, get: function () { return prelude_1.Sigma; } });
10
- exports.Rectify = require("@ot-builder/rectify");
11
- exports.Trace = require("@ot-builder/trace");
11
+ exports.Rectify = tslib_1.__importStar(require("@ot-builder/rectify"));
12
+ exports.Trace = tslib_1.__importStar(require("@ot-builder/trace"));
12
13
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ot-builder",
3
- "version": "1.7.8",
3
+ "version": "1.8.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,13 +24,13 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "tslib": "^2.8.1",
27
- "@ot-builder/io-bin-font": "1.7.8",
28
- "@ot-builder/primitive": "1.7.8",
29
- "@ot-builder/rectify": "1.7.8",
30
- "@ot-builder/trace": "1.7.8",
31
- "@ot-builder/prelude": "1.7.7",
32
- "@ot-builder/ot": "1.7.8",
33
- "@ot-builder/cli-proc": "1.7.8"
27
+ "@ot-builder/io-bin-font": "1.8.0",
28
+ "@ot-builder/primitive": "1.8.0",
29
+ "@ot-builder/rectify": "1.8.0",
30
+ "@ot-builder/trace": "1.8.0",
31
+ "@ot-builder/prelude": "1.8.0",
32
+ "@ot-builder/ot": "1.8.0",
33
+ "@ot-builder/cli-proc": "1.8.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/jest": "^30.0.0",