@traqula/parser-sparql-1-2 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.
- package/lib/index.cjs +2 -8
- package/package.json +12 -9
package/lib/index.cjs
CHANGED
|
@@ -13264,17 +13264,11 @@ var aggregateGroup_concat = {
|
|
|
13264
13264
|
const closeToken = CONSUME(symbols_exports.RParen);
|
|
13265
13265
|
return ACTION(() => {
|
|
13266
13266
|
const F3 = C.factory;
|
|
13267
|
-
return
|
|
13268
|
-
operatorToken.image,
|
|
13269
|
-
Boolean(distinctToken),
|
|
13270
|
-
expr,
|
|
13271
|
-
sep.value,
|
|
13272
|
-
F3.sourceLocation(operatorToken, closeToken)
|
|
13273
|
-
) : F3.aggregate(
|
|
13267
|
+
return F3.aggregate(
|
|
13274
13268
|
operatorToken.image,
|
|
13275
13269
|
Boolean(distinctToken),
|
|
13276
13270
|
expr,
|
|
13277
|
-
" ",
|
|
13271
|
+
sep?.value ?? " ",
|
|
13278
13272
|
F3.sourceLocation(operatorToken, closeToken)
|
|
13279
13273
|
);
|
|
13280
13274
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/parser-sparql-1-2",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"description": "SPARQL 1.2 parser",
|
|
6
6
|
"lsd:module": true,
|
|
7
7
|
"license": "MIT",
|
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"exports": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
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": {
|
|
@@ -49,17 +52,17 @@
|
|
|
49
52
|
"spec:earl": "yarn spec:earl:query-1-1 && yarn spec:earl:update-1-1"
|
|
50
53
|
},
|
|
51
54
|
"dependencies": {
|
|
52
|
-
"@traqula/core": "^0.0.
|
|
53
|
-
"@traqula/parser-sparql-1-1": "^0.0.
|
|
54
|
-
"@traqula/rules-sparql-1-1": "^0.0.
|
|
55
|
-
"@traqula/rules-sparql-1-2": "^0.0.
|
|
55
|
+
"@traqula/core": "^0.0.2",
|
|
56
|
+
"@traqula/parser-sparql-1-1": "^0.0.2",
|
|
57
|
+
"@traqula/rules-sparql-1-1": "^0.0.2",
|
|
58
|
+
"@traqula/rules-sparql-1-2": "^0.0.2",
|
|
56
59
|
"rdf-data-factory": "^2.0.1"
|
|
57
60
|
},
|
|
58
61
|
"devDependencies": {
|
|
59
62
|
"@rdfjs/types": "^2.0.0",
|
|
60
|
-
"@traqula/test-utils": "^0.0.
|
|
63
|
+
"@traqula/test-utils": "^0.0.2",
|
|
61
64
|
"rdf-data-factory": "^2.0.1",
|
|
62
65
|
"rdf-test-suite": "^2.0.0"
|
|
63
66
|
},
|
|
64
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "8d4d4a6b155e14db6e1f87a0b855ade7515c4e35"
|
|
65
68
|
}
|