@traqula/generator-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 +14 -11
package/lib/index.cjs
CHANGED
|
@@ -13192,17 +13192,11 @@ var aggregateGroup_concat = {
|
|
|
13192
13192
|
const closeToken = CONSUME(symbols_exports.RParen);
|
|
13193
13193
|
return ACTION(() => {
|
|
13194
13194
|
const F3 = C.factory;
|
|
13195
|
-
return
|
|
13196
|
-
operatorToken.image,
|
|
13197
|
-
Boolean(distinctToken),
|
|
13198
|
-
expr,
|
|
13199
|
-
sep.value,
|
|
13200
|
-
F3.sourceLocation(operatorToken, closeToken)
|
|
13201
|
-
) : F3.aggregate(
|
|
13195
|
+
return F3.aggregate(
|
|
13202
13196
|
operatorToken.image,
|
|
13203
13197
|
Boolean(distinctToken),
|
|
13204
13198
|
expr,
|
|
13205
|
-
" ",
|
|
13199
|
+
sep?.value ?? " ",
|
|
13206
13200
|
F3.sourceLocation(operatorToken, closeToken)
|
|
13207
13201
|
);
|
|
13208
13202
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/generator-sparql-1-2",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"description": "SPARQL 1.2 generator",
|
|
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": {
|
|
@@ -38,15 +41,15 @@
|
|
|
38
41
|
"build:transpile": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --bundle --log-level=error --outfile=lib/index.cjs lib/index.ts"
|
|
39
42
|
},
|
|
40
43
|
"dependencies": {
|
|
41
|
-
"@traqula/core": "^0.0.
|
|
42
|
-
"@traqula/generator-sparql-1-1": "^0.0.
|
|
43
|
-
"@traqula/rules-sparql-1-1": "^0.0.
|
|
44
|
-
"@traqula/rules-sparql-1-2": "^0.0.
|
|
44
|
+
"@traqula/core": "^0.0.2",
|
|
45
|
+
"@traqula/generator-sparql-1-1": "^0.0.2",
|
|
46
|
+
"@traqula/rules-sparql-1-1": "^0.0.2",
|
|
47
|
+
"@traqula/rules-sparql-1-2": "^0.0.2"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
|
-
"@traqula/parser-sparql-1-2": "^0.0.
|
|
48
|
-
"@traqula/rules-sparql-1-2": "^0.0.
|
|
49
|
-
"@traqula/test-utils": "^0.0.
|
|
50
|
+
"@traqula/parser-sparql-1-2": "^0.0.2",
|
|
51
|
+
"@traqula/rules-sparql-1-2": "^0.0.1",
|
|
52
|
+
"@traqula/test-utils": "^0.0.2"
|
|
50
53
|
},
|
|
51
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "8d4d4a6b155e14db6e1f87a0b855ade7515c4e35"
|
|
52
55
|
}
|