@traqula/rules-sparql-1-2 0.0.1-alpha.137 → 0.0.1-alpha.141
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/lib/index.cjs +3 -2
- package/package.json +7 -5
package/lib/index.cjs
CHANGED
|
@@ -10964,9 +10964,10 @@ var graphNodePath = graphNodeImpl("graphNodePath", true);
|
|
|
10964
10964
|
// ../rules-sparql-1-1/lib/grammar/general.ts
|
|
10965
10965
|
var prologue = {
|
|
10966
10966
|
name: "prologue",
|
|
10967
|
-
impl: ({ ACTION, SUBRULE, MANY, OR }) => () => {
|
|
10967
|
+
impl: ({ ACTION, SUBRULE, MANY, OR, context }) => () => {
|
|
10968
10968
|
const result = {
|
|
10969
|
-
prefixes: {}
|
|
10969
|
+
prefixes: {},
|
|
10970
|
+
...context.baseIRI && { base: context.baseIRI }
|
|
10970
10971
|
};
|
|
10971
10972
|
MANY(() => {
|
|
10972
10973
|
OR([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/rules-sparql-1-2",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.141+caaf4c7",
|
|
4
4
|
"description": "TRAQULA Lexer and Grammar Rules for sparql 1.2",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,9 +38,11 @@
|
|
|
38
38
|
"build:transpile": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --bundle --log-level=error --outfile=lib/index.cjs lib/index.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@traqula/core": "^0.0.1-alpha.
|
|
42
|
-
"@traqula/rules-sparql-1-1": "^0.0.1-alpha.
|
|
43
|
-
"rdf-data-factory": "^2.0.1"
|
|
41
|
+
"@traqula/core": "^0.0.1-alpha.141+caaf4c7",
|
|
42
|
+
"@traqula/rules-sparql-1-1": "^0.0.1-alpha.141+caaf4c7"
|
|
44
43
|
},
|
|
45
|
-
"
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@rdfjs/types": "^2.0.0"
|
|
46
|
+
},
|
|
47
|
+
"gitHead": "caaf4c71153d27f8fa113b51efb1dae91e182960"
|
|
46
48
|
}
|