@depup/vite 8.0.6-depup.0 → 8.0.7-depup.0
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/README.md +1 -1
- package/changes.json +1 -1
- package/dist/node/chunks/node.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npm install @depup/vite
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [vite](https://www.npmjs.com/package/vite) @ 8.0.
|
|
16
|
+
| Original | [vite](https://www.npmjs.com/package/vite) @ 8.0.7 |
|
|
17
17
|
| Processed | 2026-04-07 |
|
|
18
18
|
| Smoke test | failed |
|
|
19
19
|
| Deps updated | 0 |
|
package/changes.json
CHANGED
package/dist/node/chunks/node.js
CHANGED
|
@@ -17,7 +17,7 @@ import { VERSION as rolldownVersion, rolldown } from "rolldown";
|
|
|
17
17
|
import os from "node:os";
|
|
18
18
|
import net from "node:net";
|
|
19
19
|
import childProcess, { exec, execFile, execSync } from "node:child_process";
|
|
20
|
-
import { promises } from "node:dns";
|
|
20
|
+
import { getDefaultResultOrder, promises } from "node:dns";
|
|
21
21
|
import { isatty } from "node:tty";
|
|
22
22
|
import path$1, { isAbsolute as isAbsolute$1, join as join$1, posix as posix$1, resolve as resolve$1, win32 } from "path";
|
|
23
23
|
import { exactRegex, makeIdFiltersToMatchWithQuery, prefixRegex, withFilter } from "rolldown/filter";
|
|
@@ -2064,7 +2064,7 @@ function unique(arr) {
|
|
|
2064
2064
|
* For example, when IPv6 is not supported on that machine/network.
|
|
2065
2065
|
*/
|
|
2066
2066
|
function getLocalhostAddressIfDiffersFromDNS() {
|
|
2067
|
-
if (
|
|
2067
|
+
if (getDefaultResultOrder() === "verbatim") return;
|
|
2068
2068
|
return Promise.all([promises.lookup("localhost"), promises.lookup("localhost", { verbatim: true })]).then(([nodeResult, dnsResult]) => {
|
|
2069
2069
|
return nodeResult.family === dnsResult.family && nodeResult.address === dnsResult.address ? void 0 : nodeResult.address;
|
|
2070
2070
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/vite",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.7-depup.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Evan You",
|
|
@@ -200,8 +200,8 @@
|
|
|
200
200
|
"changes": {},
|
|
201
201
|
"depsUpdated": 0,
|
|
202
202
|
"originalPackage": "vite",
|
|
203
|
-
"originalVersion": "8.0.
|
|
204
|
-
"processedAt": "2026-04-
|
|
203
|
+
"originalVersion": "8.0.7",
|
|
204
|
+
"processedAt": "2026-04-07T16:30:12.853Z",
|
|
205
205
|
"smokeTest": "failed"
|
|
206
206
|
}
|
|
207
207
|
}
|