@shaclmate/shacl-ast 2.0.13 → 2.0.14

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/index.d.ts CHANGED
@@ -1,8 +1,11 @@
1
+ export * from "./defaultFactory.js";
2
+ export * from "./Factory.js";
1
3
  export * from "./NodeKind.js";
4
+ export * from "./PropertyPath.js";
2
5
  export * from "./NodeShape.js";
6
+ export * from "./Ontology.js";
3
7
  export * from "./PropertyGroup.js";
4
- export * from "./PropertyPath.js";
5
8
  export * from "./PropertyShape.js";
6
9
  export * from "./Shape.js";
7
- export * from "./ShapesGraph.js";
10
+ export * from "./RdfjsShapesGraph.js";
8
11
  //# sourceMappingURL=index.d.ts.map
package/index.js CHANGED
@@ -1,8 +1,11 @@
1
+ export * from "./defaultFactory.js";
2
+ export * from "./Factory.js";
1
3
  export * from "./NodeKind.js";
4
+ export * from "./PropertyPath.js";
2
5
  export * from "./NodeShape.js";
6
+ export * from "./Ontology.js";
3
7
  export * from "./PropertyGroup.js";
4
- export * from "./PropertyPath.js";
5
8
  export * from "./PropertyShape.js";
6
9
  export * from "./Shape.js";
7
- export * from "./ShapesGraph.js";
10
+ export * from "./RdfjsShapesGraph.js";
8
11
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "@types/rdfjs__term-map": "^2.0.10",
8
8
  "@types/rdfjs__term-set": "^2.0.9",
9
9
  "purify-ts": "^2.1.0",
10
- "rdfjs-resource": "1.0.12"
10
+ "rdfjs-resource": "1.0.14"
11
11
  },
12
12
  "devDependencies": {
13
13
  "@types/n3": "^1.21.1",
@@ -38,7 +38,8 @@
38
38
  "test:coverage": "biome check && vitest run --coverage",
39
39
  "test:watch": "vitest watch",
40
40
  "unlink": "npm unlink -g @shaclmate/shacl-ast",
41
- "watch": "tsc -w --preserveWatchOutput"
41
+ "watch": "tsc -w --preserveWatchOutput",
42
+ "watch:noEmit": "tsc --noEmit -w --preserveWatchOutput"
42
43
  },
43
44
  "repository": {
44
45
  "type": "git",
@@ -46,5 +47,5 @@
46
47
  },
47
48
  "type": "module",
48
49
  "types": "index.d.ts",
49
- "version": "2.0.13"
50
+ "version": "2.0.14"
50
51
  }
@@ -1,7 +0,0 @@
1
- import type { BlankNode, NamedNode } from "@rdfjs/types";
2
- import type { ShapesGraph } from "./ShapesGraph.js";
3
- export interface ShapeParameters {
4
- node: BlankNode | NamedNode;
5
- shapesGraph: ShapesGraph;
6
- }
7
- //# sourceMappingURL=ShapeParameters.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ShapeParameters.js.map