@dataplan/json 1.0.0-rc.6 → 1.0.1

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/README.md CHANGED
@@ -22,7 +22,6 @@ via sponsorship.
22
22
  And please give some love to our featured sponsors 🤩:
23
23
 
24
24
  <table><tr>
25
- <td align="center"><a href="https://www.the-guild.dev/"><img src="https://graphile.org/images/sponsors/theguild.png" width="90" height="90" alt="The Guild" /><br />The Guild</a> *</td>
26
25
  <td align="center"><a href="https://gosteelhead.com/"><img src="https://graphile.org/images/sponsors/steelhead.svg" width="90" height="90" alt="Steelhead" /><br />Steelhead</a> *</td>
27
26
  </tr></table>
28
27
 
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export type { JSONValue } from "./steps/jsonParse.ts";
2
2
  export { jsonParse, JSONParseStep } from "./steps/jsonParse.ts";
3
+ export { version } from "./version.ts";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC"}
package/dist/index.js CHANGED
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.JSONParseStep = exports.jsonParse = void 0;
3
+ exports.version = exports.JSONParseStep = exports.jsonParse = void 0;
4
4
  var jsonParse_ts_1 = require("./steps/jsonParse.js");
5
5
  Object.defineProperty(exports, "jsonParse", { enumerable: true, get: function () { return jsonParse_ts_1.jsonParse; } });
6
6
  Object.defineProperty(exports, "JSONParseStep", { enumerable: true, get: function () { return jsonParse_ts_1.JSONParseStep; } });
7
+ var version_ts_1 = require("./version.js");
8
+ Object.defineProperty(exports, "version", { enumerable: true, get: function () { return version_ts_1.version; } });
7
9
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,qDAAgE;AAAvD,yGAAA,SAAS,OAAA;AAAE,6GAAA,aAAa,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,qDAAgE;AAAvD,yGAAA,SAAS,OAAA;AAAE,6GAAA,aAAa,OAAA;AACjC,2CAAuC;AAA9B,qGAAA,OAAO,OAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const version = "1.0.1";
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,UAAU,CAAC"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.version = void 0;
4
+ // This file is autogenerated by /scripts/postversion.mjs
5
+ exports.version = "1.0.1";
6
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;;AAAA,yDAAyD;AAC5C,QAAA,OAAO,GAAG,OAAO,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataplan/json",
3
- "version": "1.0.0-rc.6",
3
+ "version": "1.0.1",
4
4
  "description": "JSON step classes for Grafast",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",