@ibgib/ts-gib 0.5.0 → 0.5.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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.5.1
2
+ * meta: reorg V1/index.mts to export * from transform-helper
3
+ * was only exporting a subset, forcing consumers to import certain fns
4
+ specially from transform-helper path.
5
+
1
6
  ## 0.5.0
2
7
  * meta: reorg/refactor with @ibgib/helper-gib
3
8
  * extracted non-ibgib-related functions, e.g. `hash`, `clone`, `pretty`, etc.,
@@ -1,5 +1,5 @@
1
1
  export * from './fork.mjs';
2
2
  export * from './mut8.mjs';
3
3
  export * from './rel8.mjs';
4
- export { isPrimitive, isDna } from './transform-helper.mjs';
4
+ export * from './transform-helper.mjs';
5
5
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/V1/transforms/index.mts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/V1/transforms/index.mts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  export * from './fork.mjs';
2
2
  export * from './mut8.mjs';
3
3
  export * from './rel8.mjs';
4
- export { isPrimitive, isDna } from './transform-helper.mjs';
4
+ export * from './transform-helper.mjs';
5
5
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/V1/transforms/index.mts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/V1/transforms/index.mts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibgib/ts-gib",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "ibgib library with low-level graphing-related substrate functionality, e.g. creating raw ibgibs and transformations. node19+ needed for heavily-used webcrypto hashing isomorphically consumed in node and browsers (apps).",
5
5
  "repository": {
6
6
  "url": "https://gitlab.com/ibgib/ts-gib",
@@ -1,4 +1,4 @@
1
1
  export * from './fork.mjs';
2
2
  export * from './mut8.mjs';
3
3
  export * from './rel8.mjs';
4
- export { isPrimitive, isDna } from './transform-helper.mjs';
4
+ export * from './transform-helper.mjs';