wrec 0.24.2 → 0.24.3

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "wrec",
3
3
  "description": "a small library that greatly simplifies building web components",
4
4
  "author": "R. Mark Volkmann",
5
- "version": "0.24.2",
5
+ "version": "0.24.3",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -429,7 +429,7 @@ function buildConfigText(sourceFile, member, methodNames, quote) {
429
429
  configObject.end
430
430
  );
431
431
  const multiline = original.includes('\n');
432
- if (!multiline) return `{${existingTexts.join(', ')}}`;
432
+ if (!multiline) return `{ ${existingTexts.join(', ')} }`;
433
433
 
434
434
  const memberIndent = getIndent(text, member.getStart(sourceFile));
435
435
  const firstExisting = existingMembers[0];