@traqula/rules-sparql-1-1-adjust 0.0.1-alpha.140 → 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 +4 -4
package/lib/index.cjs
CHANGED
|
@@ -10847,9 +10847,10 @@ var graphNodePath = graphNodeImpl("graphNodePath", true);
|
|
|
10847
10847
|
// ../rules-sparql-1-1/lib/grammar/general.ts
|
|
10848
10848
|
var prologue = {
|
|
10849
10849
|
name: "prologue",
|
|
10850
|
-
impl: ({ ACTION, SUBRULE, MANY, OR }) => () => {
|
|
10850
|
+
impl: ({ ACTION, SUBRULE, MANY, OR, context }) => () => {
|
|
10851
10851
|
const result = {
|
|
10852
|
-
prefixes: {}
|
|
10852
|
+
prefixes: {},
|
|
10853
|
+
...context.baseIRI && { base: context.baseIRI }
|
|
10853
10854
|
};
|
|
10854
10855
|
MANY(() => {
|
|
10855
10856
|
OR([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/rules-sparql-1-1-adjust",
|
|
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.1-ADJUST",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
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.
|
|
41
|
+
"@traqula/core": "^0.0.1-alpha.141+caaf4c7",
|
|
42
|
+
"@traqula/rules-sparql-1-1": "^0.0.1-alpha.141+caaf4c7"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "caaf4c71153d27f8fa113b51efb1dae91e182960"
|
|
45
45
|
}
|