win_webview2 1.0.9 → 1.0.10
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/package.json +1 -1
- package/ww2_builder_deploy.mjs +5 -0
package/package.json
CHANGED
package/ww2_builder_deploy.mjs
CHANGED
|
@@ -159,6 +159,11 @@ export class WW2Deploy {
|
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
let objstr = JSON.stringify(objConfig, null, 2);
|
|
162
|
+
if(fs.existsSync(jsonConfigFilePath)){
|
|
163
|
+
logPrint("file config is exits");
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
|
|
162
167
|
await fs.promises.writeFile(jsonConfigFilePath, objstr);
|
|
163
168
|
}
|
|
164
169
|
|