shapedef 1.0.9 → 1.0.11

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.
@@ -3,4 +3,5 @@ export * from "./shape-collection";
3
3
  export * from "./shape-utils";
4
4
  export * from "./inputs";
5
5
  export * from "./translations";
6
+ export * from "./validation";
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC"}
package/dist/cjs/index.js CHANGED
@@ -19,4 +19,5 @@ __exportStar(require("./shape-collection"), exports);
19
19
  __exportStar(require("./shape-utils"), exports);
20
20
  __exportStar(require("./inputs"), exports);
21
21
  __exportStar(require("./translations"), exports);
22
+ __exportStar(require("./validation"), exports);
22
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,qDAAmC;AACnC,gDAA8B;AAC9B,2CAAyB;AACzB,iDAA+B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,qDAAmC;AACnC,gDAA8B;AAC9B,2CAAyB;AACzB,iDAA+B;AAC/B,+CAA6B"}
@@ -3,4 +3,5 @@ export * from "./shape-collection";
3
3
  export * from "./shape-utils";
4
4
  export * from "./inputs";
5
5
  export * from "./translations";
6
+ export * from "./validation";
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC"}
package/dist/esm/index.js CHANGED
@@ -19,4 +19,5 @@ __exportStar(require("./shape-collection"), exports);
19
19
  __exportStar(require("./shape-utils"), exports);
20
20
  __exportStar(require("./inputs"), exports);
21
21
  __exportStar(require("./translations"), exports);
22
+ __exportStar(require("./validation"), exports);
22
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,qDAAmC;AACnC,gDAA8B;AAC9B,2CAAyB;AACzB,iDAA+B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,qDAAmC;AACnC,gDAA8B;AAC9B,2CAAyB;AACzB,iDAA+B;AAC/B,+CAA6B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shapedef",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "types": "./dist/cjs/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "scripts": {
39
39
  "test": "vitest",
40
- "build": "tsc -p tsconfig.esm.json && echo '{\"type\":\"module\"}' > dist/esm/package.json && tsc -p tsconfig.cjs.json",
40
+ "build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
41
41
  "check": "tsc -p ./tsconfig.json --noEmit",
42
42
  "format": "prettier --experimental-ternaries ./src --write"
43
43
  }
package/src/index.ts CHANGED
@@ -3,3 +3,4 @@ export * from "./shape-collection";
3
3
  export * from "./shape-utils";
4
4
  export * from "./inputs";
5
5
  export * from "./translations";
6
+ export * from "./validation";
@@ -1 +0,0 @@
1
- {"type":"module"}