@traqula/generator-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.
- package/lib/index.cjs +2 -8
- package/package.json +12 -9
package/lib/index.cjs
CHANGED
|
@@ -13134,17 +13134,11 @@ var aggregateGroup_concat = {
|
|
|
13134
13134
|
const closeToken = CONSUME(symbols_exports.RParen);
|
|
13135
13135
|
return ACTION(() => {
|
|
13136
13136
|
const F2 = C.factory;
|
|
13137
|
-
return
|
|
13138
|
-
operatorToken.image,
|
|
13139
|
-
Boolean(distinctToken),
|
|
13140
|
-
expr,
|
|
13141
|
-
sep.value,
|
|
13142
|
-
F2.sourceLocation(operatorToken, closeToken)
|
|
13143
|
-
) : F2.aggregate(
|
|
13137
|
+
return F2.aggregate(
|
|
13144
13138
|
operatorToken.image,
|
|
13145
13139
|
Boolean(distinctToken),
|
|
13146
13140
|
expr,
|
|
13147
|
-
" ",
|
|
13141
|
+
sep?.value ?? " ",
|
|
13148
13142
|
F2.sourceLocation(operatorToken, closeToken)
|
|
13149
13143
|
);
|
|
13150
13144
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/generator-sparql-1-1",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"description": "SPARQL 1.1 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,13 +41,13 @@
|
|
|
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/rules-sparql-1-1": "^0.0.
|
|
44
|
+
"@traqula/core": "^0.0.2",
|
|
45
|
+
"@traqula/rules-sparql-1-1": "^0.0.2"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
45
|
-
"@traqula/parser-sparql-1-1": "^0.0.
|
|
46
|
-
"@traqula/rules-sparql-1-1": "^0.0.
|
|
47
|
-
"@traqula/test-utils": "^0.0.
|
|
48
|
+
"@traqula/parser-sparql-1-1": "^0.0.2",
|
|
49
|
+
"@traqula/rules-sparql-1-1": "^0.0.1",
|
|
50
|
+
"@traqula/test-utils": "^0.0.2"
|
|
48
51
|
},
|
|
49
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8d4d4a6b155e14db6e1f87a0b855ade7515c4e35"
|
|
50
53
|
}
|