electron-info 1.23.0 → 1.23.2
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/ElectronInfo.test.js +1 -1
- package/dist/HTTPService.test.js +1 -1
- package/dist/cli.js +3 -1
- package/package.json +3 -3
|
@@ -4,7 +4,7 @@ import { randomUUID } from 'node:crypto';
|
|
|
4
4
|
import { expect, describe, test, beforeEach, beforeAll, afterAll, afterEach } from 'vitest';
|
|
5
5
|
import { StatusCodes as HTTP_STATUS } from 'http-status-codes';
|
|
6
6
|
import nock from 'nock';
|
|
7
|
-
import
|
|
7
|
+
import fs from 'fs-extra';
|
|
8
8
|
import { ElectronInfo } from './ElectronInfo.js';
|
|
9
9
|
const __filename = fileURLToPath(import.meta.url);
|
|
10
10
|
const __dirname = path.dirname(__filename);
|
package/dist/HTTPService.test.js
CHANGED
package/dist/cli.js
CHANGED
|
@@ -79,7 +79,9 @@ for (const [dependencyShortName, dependencyFullName] of Object.entries(Supported
|
|
|
79
79
|
...(commanderOptions.force && { forceUpdate: true }),
|
|
80
80
|
...(commanderOptions.latest && { latest: true }),
|
|
81
81
|
...(commanderOptions.limit && { limit: parseInt(commanderOptions.limit, 10) }),
|
|
82
|
-
...(typeof commanderOptions.prereleases !== 'undefined' && {
|
|
82
|
+
...(typeof commanderOptions.prereleases !== 'undefined' && {
|
|
83
|
+
electronPrereleases: commanderOptions.prereleases,
|
|
84
|
+
}),
|
|
83
85
|
...(commanderOptions.source && { releasesUrl: commanderOptions.source }),
|
|
84
86
|
...(commanderOptions.timeout && { timeout: commanderOptions.timeout }),
|
|
85
87
|
});
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"bin": "dist/cli.js",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"axios": "1.7.
|
|
5
|
+
"axios": "1.7.4",
|
|
6
6
|
"chalk": "5.3.0",
|
|
7
7
|
"commander": "12.1.0",
|
|
8
8
|
"date-fns": "3.6.0",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"test": "vitest run"
|
|
49
49
|
},
|
|
50
50
|
"type": "module",
|
|
51
|
-
"version": "1.23.
|
|
52
|
-
"gitHead": "
|
|
51
|
+
"version": "1.23.2",
|
|
52
|
+
"gitHead": "61eb972d144debefdd584621ee7316d1961fd8e4"
|
|
53
53
|
}
|