@traqula/generator-sparql-1-1 0.0.1-alpha.9 → 0.0.1

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 +6 -6
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 sep ? F2.aggregate(
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.1-alpha.9+427f381",
4
+ "version": "0.0.1",
5
5
  "description": "SPARQL 1.1 generator",
6
6
  "lsd:module": true,
7
7
  "license": "MIT",
@@ -38,13 +38,13 @@
38
38
  "build:transpile": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --bundle --log-level=error --outfile=lib/index.cjs lib/index.ts"
39
39
  },
40
40
  "dependencies": {
41
- "@traqula/core": "^0.0.1-alpha.9+427f381",
42
- "@traqula/rules-sparql-1-1": "^0.0.1-alpha.9+427f381"
41
+ "@traqula/core": "^0.0.1",
42
+ "@traqula/rules-sparql-1-1": "^0.0.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@traqula/parser-sparql-1-1": "^0.0.1-alpha.9+427f381",
45
+ "@traqula/parser-sparql-1-1": "^0.0.1",
46
46
  "@traqula/rules-sparql-1-1": "^0.0.0",
47
- "@traqula/test-utils": "^0.0.1-alpha.9+427f381"
47
+ "@traqula/test-utils": "^0.0.1"
48
48
  },
49
- "gitHead": "427f3819138dd557621cae40c761213573e60017"
49
+ "gitHead": "2bfa8222d972fda2ca6f0adc80a5362e0d583871"
50
50
  }