@shaclmate/shacl-ast 2.0.20 → 2.0.23
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/dist/IdentifierNodeKind.d.ts +6 -0
- package/dist/IdentifierNodeKind.js +2 -0
- package/dist/NodeShape.d.ts +2 -2
- package/dist/Ontology.d.ts +1 -1
- package/dist/Ontology.js +1 -1
- package/dist/PropertyGroup.js +1 -1
- package/dist/PropertyPath.d.ts +6 -5
- package/dist/PropertyPath.js +14 -22
- package/dist/PropertyShape.d.ts +3 -3
- package/dist/Shape.d.ts +4 -4
- package/dist/Shape.js +1 -1
- package/dist/defaultFactory.js +4 -4
- package/dist/generated.d.ts +535 -49
- package/dist/generated.js +1190 -514
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +8 -13
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
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.
|
|
10
|
+
"rdfjs-resource": "1.0.20"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@types/n3": "^1.21.1",
|
|
@@ -25,31 +25,26 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"name": "@shaclmate/shacl-ast",
|
|
28
|
+
"packageManager": "npm@10.9.0",
|
|
28
29
|
"repository": {
|
|
29
30
|
"type": "git",
|
|
30
31
|
"url": "git+https://github.com/minorg/shaclmate"
|
|
31
32
|
},
|
|
32
33
|
"scripts": {
|
|
33
34
|
"build": "tsc -b",
|
|
35
|
+
"build:noEmit": "tsc --noEmit",
|
|
34
36
|
"check": "biome check",
|
|
35
37
|
"check:write": "biome check --write",
|
|
36
38
|
"check:write:unsafe": "biome check --write --unsafe",
|
|
37
39
|
"clean": "rimraf dist",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"format:write:unsafe": "biome format --write --unsafe",
|
|
41
|
-
"rebuild": "run-s clean build",
|
|
40
|
+
"dev": "tsc -w --preserveWatchOutput",
|
|
41
|
+
"dev:noEmit": "tsc --noEmit -w --preserveWatchOutput",
|
|
42
42
|
"link-dependencies": "npm link rdfjs-resource",
|
|
43
|
-
"lint": "biome lint",
|
|
44
|
-
"lint:write": "biome lint --write",
|
|
45
|
-
"lint:write:unsafe": "biome lint --write --unsafe",
|
|
46
43
|
"test": "biome check && vitest run",
|
|
47
44
|
"test:coverage": "biome check && vitest run --coverage",
|
|
48
|
-
"test:watch": "vitest watch",
|
|
49
|
-
"unlink": "npm unlink -g @shaclmate/shacl-ast"
|
|
50
|
-
"watch": "tsc -w --preserveWatchOutput",
|
|
51
|
-
"watch:noEmit": "tsc --noEmit -w --preserveWatchOutput"
|
|
45
|
+
"test:watch": "biome check && vitest watch",
|
|
46
|
+
"unlink": "npm unlink -g @shaclmate/shacl-ast"
|
|
52
47
|
},
|
|
53
48
|
"type": "module",
|
|
54
|
-
"version": "2.0.
|
|
49
|
+
"version": "2.0.23"
|
|
55
50
|
}
|