@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.
Files changed (2) hide show
  1. package/lib/index.cjs +3 -2
  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.140+d75283c",
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.140+d75283c",
42
- "@traqula/rules-sparql-1-1": "^0.0.1-alpha.140+d75283c"
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": "d75283cbc0fd63d4fc4314c51db00e834b2ee7e0"
44
+ "gitHead": "caaf4c71153d27f8fa113b51efb1dae91e182960"
45
45
  }