@danielx/civet 0.5.28 → 0.5.29

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/dist/browser.js CHANGED
@@ -5955,6 +5955,8 @@ ${input.slice(result.pos)}
5955
5955
  var block = $2;
5956
5956
  var e = $3;
5957
5957
  const children = [...clause.children, block];
5958
+ if (block.bare && e)
5959
+ children.push(";");
5958
5960
  if (e)
5959
5961
  children.push(e);
5960
5962
  return {
package/dist/main.js CHANGED
@@ -5954,6 +5954,8 @@ ${input.slice(result.pos)}
5954
5954
  var block = $2;
5955
5955
  var e = $3;
5956
5956
  const children = [...clause.children, block];
5957
+ if (block.bare && e)
5958
+ children.push(";");
5957
5959
  if (e)
5958
5960
  children.push(e);
5959
5961
  return {
package/dist/main.mjs CHANGED
@@ -5952,6 +5952,8 @@ ${input.slice(result.pos)}
5952
5952
  var block = $2;
5953
5953
  var e = $3;
5954
5954
  const children = [...clause.children, block];
5955
+ if (block.bare && e)
5956
+ children.push(";");
5955
5957
  if (e)
5956
5958
  children.push(e);
5957
5959
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielx/civet",
3
- "version": "0.5.28",
3
+ "version": "0.5.29",
4
4
  "description": "CoffeeScript style syntax for TypeScript",
5
5
  "main": "dist/main.js",
6
6
  "module": "dist/main.mjs",