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