@ronin/compiler 0.12.6-corny-ron-1071-experimental-258 → 0.12.6-corny-ron-1071-experimental-259
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -911,7 +911,7 @@ var transformMetaQuery = (models, dependencyStatements, statementParams, query)
|
|
911
911
|
}).main.statement;
|
912
912
|
});
|
913
913
|
statementParts.push("BEGIN");
|
914
|
-
statementParts.push(effectStatements.join("; "));
|
914
|
+
statementParts.push(`${effectStatements.join("; ")};`);
|
915
915
|
statementParts.push("END");
|
916
916
|
statement += ` ${statementParts.join(" ")}`;
|
917
917
|
}
|
package/package.json
CHANGED