@fgv/ts-json-base 5.0.1-3 → 5.0.1-4

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.
@@ -1,7 +1,8 @@
1
1
  import * as Converters from './packlets/converters';
2
2
  import * as FileTree from './packlets/file-tree/index.browser';
3
+ import * as JsonCompatible from './packlets/json-compatible';
3
4
  import * as JsonFile from './packlets/json-file/index.browser';
4
5
  import * as Validators from './packlets/validators';
5
6
  export * from './packlets/json';
6
- export { Converters, FileTree, JsonFile, Validators };
7
+ export { Converters, FileTree, JsonCompatible, JsonFile, Validators };
7
8
  //# sourceMappingURL=index.browser.d.ts.map
@@ -57,12 +57,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
57
57
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
58
58
  };
59
59
  Object.defineProperty(exports, "__esModule", { value: true });
60
- exports.Validators = exports.JsonFile = exports.FileTree = exports.Converters = void 0;
60
+ exports.Validators = exports.JsonFile = exports.JsonCompatible = exports.FileTree = exports.Converters = void 0;
61
61
  const Converters = __importStar(require("./packlets/converters"));
62
62
  exports.Converters = Converters;
63
63
  // eslint-disable-next-line @rushstack/packlets/mechanics
64
64
  const FileTree = __importStar(require("./packlets/file-tree/index.browser"));
65
65
  exports.FileTree = FileTree;
66
+ const JsonCompatible = __importStar(require("./packlets/json-compatible"));
67
+ exports.JsonCompatible = JsonCompatible;
66
68
  // eslint-disable-next-line @rushstack/packlets/mechanics
67
69
  const JsonFile = __importStar(require("./packlets/json-file/index.browser"));
68
70
  exports.JsonFile = JsonFile;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-json-base",
3
- "version": "5.0.1-3",
3
+ "version": "5.0.1-4",
4
4
  "description": "Typescript types and basic functions for working with json",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-json-base.d.ts",
@@ -53,11 +53,11 @@
53
53
  "@rushstack/eslint-config": "4.5.3",
54
54
  "eslint-plugin-tsdoc": "~0.4.0",
55
55
  "@types/luxon": "^3.7.1",
56
- "@fgv/ts-utils": "5.0.1-3",
57
- "@fgv/ts-utils-jest": "5.0.1-3"
56
+ "@fgv/ts-utils": "5.0.1-4",
57
+ "@fgv/ts-utils-jest": "5.0.1-4"
58
58
  },
59
59
  "peerDependencies": {
60
- "@fgv/ts-utils": "5.0.1-3"
60
+ "@fgv/ts-utils": "5.0.1-4"
61
61
  },
62
62
  "dependencies": {
63
63
  "luxon": "^3.7.2"