@gem-sdk/core 2.1.40 → 2.1.45

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.
@@ -296,8 +296,7 @@ const WrapRenderChildren = ({ uid, customProps }, codes)=>{
296
296
  if (codes?.length) {
297
297
  let tempLiquid = '';
298
298
  let fileIndex = 0;
299
- for(let i = 0; i < codes.length; i++){
300
- const code = codes[i];
299
+ for (const code of codes){
301
300
  if (code) {
302
301
  const textEncoder = new TextEncoder();
303
302
  const newTempLiquid = tempLiquid + code;
@@ -292,8 +292,7 @@ const WrapRenderChildren = ({ uid, customProps }, codes)=>{
292
292
  if (codes?.length) {
293
293
  let tempLiquid = '';
294
294
  let fileIndex = 0;
295
- for(let i = 0; i < codes.length; i++){
296
- const code = codes[i];
295
+ for (const code of codes){
297
296
  if (code) {
298
297
  const textEncoder = new TextEncoder();
299
298
  const newTempLiquid = tempLiquid + code;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.1.40",
3
+ "version": "2.1.45",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",