@shaclmate/cli 2.0.12 → 2.0.13
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/cli.js +1 -1
- package/package.json +6 -3
package/cli.js
CHANGED
|
@@ -3,11 +3,11 @@ import PrefixMap from "@rdfjs/prefix-map/PrefixMap";
|
|
|
3
3
|
import { ShapesGraphToAstTransformer } from "@shaclmate/compiler/ShapesGraphToAstTransformer.js";
|
|
4
4
|
import * as generators from "@shaclmate/compiler/generators";
|
|
5
5
|
import { dashDataset } from "@shaclmate/compiler/vocabularies/dashDataset.js";
|
|
6
|
+
import { ShapesGraph } from "@shaclmate/shacl-ast";
|
|
6
7
|
import { array, command, multioption, oneOf, option, restPositionals, run, string, subcommands, } from "cmd-ts";
|
|
7
8
|
import { ExistingPath } from "cmd-ts/dist/esm/batteries/fs.js";
|
|
8
9
|
import { DataFactory, Parser, Store } from "n3";
|
|
9
10
|
import pino from "pino";
|
|
10
|
-
import { ShapesGraph } from "shacl-ast";
|
|
11
11
|
const inputFilePaths = restPositionals({
|
|
12
12
|
displayName: "inputFilePaths",
|
|
13
13
|
description: "paths to RDF files containing SHACL shapes",
|
package/package.json
CHANGED
|
@@ -3,12 +3,15 @@
|
|
|
3
3
|
"shaclmate": "cli.js"
|
|
4
4
|
},
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@shaclmate/compiler": "2.0.
|
|
6
|
+
"@shaclmate/compiler": "2.0.13",
|
|
7
7
|
"cmd-ts": "^0.13.0",
|
|
8
8
|
"pino": "^9.1.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {},
|
|
11
|
-
"files": [
|
|
11
|
+
"files": [
|
|
12
|
+
"*.d.ts",
|
|
13
|
+
"*.js"
|
|
14
|
+
],
|
|
12
15
|
"main": "index.js",
|
|
13
16
|
"license": "Apache-2.0",
|
|
14
17
|
"name": "@shaclmate/cli",
|
|
@@ -38,5 +41,5 @@
|
|
|
38
41
|
},
|
|
39
42
|
"type": "module",
|
|
40
43
|
"types": "index.d.ts",
|
|
41
|
-
"version": "2.0.
|
|
44
|
+
"version": "2.0.13"
|
|
42
45
|
}
|