electron-incremental-update 0.1.7 → 0.1.8

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/vite.cjs CHANGED
@@ -171,8 +171,8 @@ function parseOptions(options) {
171
171
  versionPath = "version.json"
172
172
  } = paths;
173
173
  const {
174
- privateKeyPath = "public/private.pem",
175
- publicKeyPath = "public/public.pem",
174
+ privateKeyPath = "keys/private.pem",
175
+ publicKeyPath = "keys/public.pem",
176
176
  keyLength = 2048
177
177
  } = keys;
178
178
  const buildAsarOption = {
package/dist/vite.d.ts CHANGED
@@ -63,13 +63,13 @@ type Options = {
63
63
  /**
64
64
  * Path to the pem file that contains private key
65
65
  * if not ended with .pem, it will be appended
66
- * @default 'public/private.pem'
66
+ * @default 'keys/private.pem'
67
67
  */
68
68
  privateKeyPath?: string;
69
69
  /**
70
70
  * Path to the pem file that contains public key
71
71
  * if not ended with .pem, it will be appended
72
- * @default 'public/public.pem'
72
+ * @default 'keys/public.pem'
73
73
  */
74
74
  publicKeyPath?: string;
75
75
  /**
package/dist/vite.mjs CHANGED
@@ -139,8 +139,8 @@ function parseOptions(options) {
139
139
  versionPath = "version.json"
140
140
  } = paths;
141
141
  const {
142
- privateKeyPath = "public/private.pem",
143
- publicKeyPath = "public/public.pem",
142
+ privateKeyPath = "keys/private.pem",
143
+ publicKeyPath = "keys/public.pem",
144
144
  keyLength = 2048
145
145
  } = keys;
146
146
  const buildAsarOption = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electron-incremental-update",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "electron incremental update tools, powered by vite",
5
5
  "scripts": {
6
6
  "build": "tsup",