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 +2 -2
- package/dist/vite.d.ts +2 -2
- package/dist/vite.mjs +2 -2
- package/package.json +1 -1
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 = "
|
|
175
|
-
publicKeyPath = "
|
|
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 '
|
|
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 '
|
|
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 = "
|
|
143
|
-
publicKeyPath = "
|
|
142
|
+
privateKeyPath = "keys/private.pem",
|
|
143
|
+
publicKeyPath = "keys/public.pem",
|
|
144
144
|
keyLength = 2048
|
|
145
145
|
} = keys;
|
|
146
146
|
const buildAsarOption = {
|