@pipelab/plugin-electron 1.0.0-beta.13 → 1.0.0-beta.14

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.cjs CHANGED
@@ -152124,7 +152124,7 @@ const forge = async (action, appFolder, { cwd, log, inputs, setOutput, paths, ab
152124
152124
  log("Setting productName to", completeConfiguration.name);
152125
152125
  pkgJSON.productName = completeConfiguration.name;
152126
152126
  completeConfiguration.icon = relativeIconPath1;
152127
- (0, node_fs_promises.writeFile)((0, node_path.join)(destinationFolder, "config.cjs"), `module.exports = ${JSON.stringify(completeConfiguration, void 0, 2)}`, "utf8");
152127
+ await (0, node_fs_promises.writeFile)((0, node_path.join)(destinationFolder, "config.cjs"), `module.exports = ${JSON.stringify(completeConfiguration, void 0, 2)}`, "utf8");
152128
152128
  if (isCJSOnly) {
152129
152129
  log("Setting type to", "commonjs");
152130
152130
  pkgJSON.type = "commonjs";
package/dist/index.mjs CHANGED
@@ -152122,7 +152122,7 @@ const forge = async (action, appFolder, { cwd, log, inputs, setOutput, paths, ab
152122
152122
  log("Setting productName to", completeConfiguration.name);
152123
152123
  pkgJSON.productName = completeConfiguration.name;
152124
152124
  completeConfiguration.icon = relativeIconPath1;
152125
- writeFile(join(destinationFolder, "config.cjs"), `module.exports = ${JSON.stringify(completeConfiguration, void 0, 2)}`, "utf8");
152125
+ await writeFile(join(destinationFolder, "config.cjs"), `module.exports = ${JSON.stringify(completeConfiguration, void 0, 2)}`, "utf8");
152126
152126
  if (isCJSOnly) {
152127
152127
  log("Setting type to", "commonjs");
152128
152128
  pkgJSON.type = "commonjs";