@traqula/parser-sparql-1-1 0.0.1-alpha.9 → 0.0.2

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 +2 -8
  2. package/package.json +10 -7
package/lib/index.cjs CHANGED
@@ -13272,17 +13272,11 @@ var aggregateGroup_concat = {
13272
13272
  const closeToken = CONSUME(symbols_exports.RParen);
13273
13273
  return ACTION(() => {
13274
13274
  const F2 = C.factory;
13275
- return sep ? F2.aggregate(
13276
- operatorToken.image,
13277
- Boolean(distinctToken),
13278
- expr,
13279
- sep.value,
13280
- F2.sourceLocation(operatorToken, closeToken)
13281
- ) : F2.aggregate(
13275
+ return F2.aggregate(
13282
13276
  operatorToken.image,
13283
13277
  Boolean(distinctToken),
13284
13278
  expr,
13285
- " ",
13279
+ sep?.value ?? " ",
13286
13280
  F2.sourceLocation(operatorToken, closeToken)
13287
13281
  );
13288
13282
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@traqula/parser-sparql-1-1",
3
3
  "type": "module",
4
- "version": "0.0.1-alpha.9+427f381",
4
+ "version": "0.0.2",
5
5
  "description": "SPARQL 1.1 parser",
6
6
  "lsd:module": true,
7
7
  "license": "MIT",
@@ -15,8 +15,11 @@
15
15
  },
16
16
  "sideEffects": false,
17
17
  "exports": {
18
- "import": "./lib/index.js",
19
- "require": "./lib/index.cjs"
18
+ "./package.json": "./package.json",
19
+ ".": {
20
+ "import": "./lib/index.js",
21
+ "require": "./lib/index.cjs"
22
+ }
20
23
  },
21
24
  "main": "lib/index.js",
22
25
  "publishConfig": {
@@ -46,16 +49,16 @@
46
49
  "spec:earl": "yarn spec:earl:query && yarn spec:earl:update"
47
50
  },
48
51
  "dependencies": {
49
- "@traqula/core": "^0.0.1-alpha.9+427f381",
50
- "@traqula/rules-sparql-1-1": "^0.0.1-alpha.9+427f381"
52
+ "@traqula/core": "^0.0.2",
53
+ "@traqula/rules-sparql-1-1": "^0.0.2"
51
54
  },
52
55
  "devDependencies": {
53
56
  "@rdfjs/types": "^2.0.0",
54
- "@traqula/test-utils": "^0.0.1-alpha.9+427f381",
57
+ "@traqula/test-utils": "^0.0.2",
55
58
  "@types/sparqljs": "^3.1.12",
56
59
  "rdf-data-factory": "^2.0.1",
57
60
  "rdf-test-suite": "^2.0.0",
58
61
  "sparqljs": "^3.7.3"
59
62
  },
60
- "gitHead": "427f3819138dd557621cae40c761213573e60017"
63
+ "gitHead": "8d4d4a6b155e14db6e1f87a0b855ade7515c4e35"
61
64
  }