@galacean/engine-shaderlab 1.6.6 → 1.6.7

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.
@@ -5901,7 +5901,9 @@
5901
5901
  generatedIdx = generatedIdxEnd;
5902
5902
  }
5903
5903
  ret.push(source.slice(startIdx));
5904
- return ret.join("");
5904
+ var result = ret.join("");
5905
+ // Replace multiple consecutive newlines with a single newline to clean up the output
5906
+ return result.replace(/\n\s*\n+/g, "\n");
5905
5907
  };
5906
5908
  return PpUtils;
5907
5909
  }();
@@ -8846,7 +8848,7 @@
8846
8848
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
8847
8849
 
8848
8850
  //@ts-ignore
8849
- var version = "1.6.6";
8851
+ var version = "1.6.7";
8850
8852
  var mode = "Release";
8851
8853
  mode = "Verbose";
8852
8854
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);