Comparing version 1.7.4 to 1.8.0
{ | ||
"name": "unenv", | ||
"version": "1.7.4", | ||
"version": "1.8.0", | ||
"description": "", | ||
@@ -30,18 +30,18 @@ "repository": "unjs/unenv", | ||
"consola": "^3.2.3", | ||
"defu": "^6.1.2", | ||
"defu": "^6.1.3", | ||
"mime": "^3.0.0", | ||
"node-fetch-native": "^1.4.0", | ||
"node-fetch-native": "^1.4.1", | ||
"pathe": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.5.6", | ||
"@types/node": "^20.9.4", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.48.0", | ||
"eslint": "^8.54.0", | ||
"eslint-config-unjs": "^0.2.1", | ||
"jiti": "^1.19.3", | ||
"prettier": "^3.0.2", | ||
"typescript": "^5.2.2", | ||
"jiti": "^1.21.0", | ||
"prettier": "^3.1.0", | ||
"typescript": "^5.3.2", | ||
"unbuild": "^2.0.0" | ||
}, | ||
"packageManager": "pnpm@8.6.12", | ||
"packageManager": "pnpm@8.10.3", | ||
"scripts": { | ||
@@ -48,0 +48,0 @@ "build": "unbuild", |
@@ -64,5 +64,5 @@ # unenv | ||
| [node:http](https://nodejs.org/api/http.html) | Polyfilled | [unenv/node/http](./src/runtime/node/http) | | ||
| [node:https](https://nodejs.org/api/https.html) | Mocked | - | | ||
| [node:https](https://nodejs.org/api/https.html) | Polyfilled | [unenv/node/https](./src/runtime/node/https) | | ||
| [node:inspector](https://nodejs.org/api/inspector.html) | Mocked | - | | ||
| [node:module](https://nodejs.org/api/module.html) | Mocked | - | | ||
| [node:module](https://nodejs.org/api/module.html) | Polyfilled | [unenv/node/module](./src/runtime/node/module) - | | ||
| [node:net](https://nodejs.org/api/net.html) | Polyfilled | [unenv/node/net](./src/runtime/node/net) | | ||
@@ -69,0 +69,0 @@ | [node:os](https://nodejs.org/api/os.html) | Mocked | - | |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type asyncHooks from "node:async_hooks"; | ||
@@ -2,0 +3,0 @@ export declare const AsyncHook: asyncHooks.AsyncHook; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="node" /> | ||
import type asyncHooks from "node:async_hooks"; | ||
export declare const AsyncLocalStorage: typeof asyncHooks.AsyncLocalStorage; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="node" /> | ||
import type asyncHooks from "node:async_hooks"; | ||
export declare const AsyncResource: typeof asyncHooks.AsyncResource; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type buffer from "node:buffer"; | ||
@@ -2,0 +3,0 @@ export declare class File extends Blob implements buffer.File { |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type nodeCrypto from "node:crypto"; | ||
@@ -2,0 +3,0 @@ export declare const webcrypto: any; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type nodeEvents from "node:events"; | ||
@@ -2,0 +3,0 @@ interface Listener { |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type nodeEvents from "node:events"; | ||
@@ -2,0 +3,0 @@ export declare const EventEmitter: typeof nodeEvents.EventEmitter; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type fs from "node:fs"; | ||
@@ -2,0 +3,0 @@ export declare const Dir: typeof fs.Dir; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type fs from "node:fs"; | ||
@@ -2,0 +3,0 @@ export declare const F_OK = 0; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type fs from "node:fs"; | ||
@@ -2,0 +3,0 @@ interface Promisifiable { |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type fsp from "node:fs/promises"; | ||
@@ -2,0 +3,0 @@ export { constants } from "../_constants"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type http from "node:http"; | ||
@@ -2,0 +3,0 @@ import { Socket } from "../net/socket"; |
/// <reference types="node" /> | ||
/// <reference types="node" /> | ||
import type http from "node:http"; | ||
@@ -3,0 +4,0 @@ import type { Socket } from "node:net"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type http from "node:http"; | ||
@@ -2,0 +3,0 @@ export * from "./_consts"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type net from "node:net"; | ||
@@ -8,2 +9,6 @@ export { Socket, SocketAddress } from "./socket"; | ||
export declare const createConnection: any; | ||
export declare const getDefaultAutoSelectFamily: any; | ||
export declare const setDefaultAutoSelectFamily: any; | ||
export declare const getDefaultAutoSelectFamilyAttemptTimeout: any; | ||
export declare const setDefaultAutoSelectFamilyAttemptTimeout: any; | ||
export declare const isIPv4: typeof net.isIPv4; | ||
@@ -10,0 +15,0 @@ export declare const isIPv6: typeof net.isIPv6; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
readonly remotePort?: number; | ||
readonly autoSelectFamilyAttemptedAddresses: never[]; | ||
readonly readyState: net.SocketReadyState; | ||
@@ -33,2 +34,3 @@ constructor(_options?: net.SocketConstructorOpts); | ||
ref(): this; | ||
destroySoon(): void; | ||
resetAndDestroy(): this; | ||
@@ -35,0 +37,0 @@ } |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type path from "node:path"; | ||
@@ -2,0 +3,0 @@ export * from "pathe"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type stream from "node:stream"; | ||
@@ -2,0 +3,0 @@ export { Readable } from "./readable"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type stringDecoder from "node:string_decoder"; | ||
@@ -2,0 +3,0 @@ export declare const StringDecoder: typeof stringDecoder.StringDecoder; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type util from "node:util"; | ||
@@ -2,0 +3,0 @@ export declare const isRegExp: typeof util.isRegExp; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type util from "node:util"; | ||
@@ -2,0 +3,0 @@ export declare const log: (...args: any[]) => void; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="node" /> | ||
import type util from "node:util"; | ||
export declare const promisify: typeof util.promisify; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type util from "node:util"; | ||
@@ -2,0 +3,0 @@ export * from "./_mime"; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import type utilTypes from "node:util/types"; | ||
@@ -2,0 +3,0 @@ export declare const isExternal: typeof utilTypes.isExternal; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
216
379118
10884
Updateddefu@^6.1.3
Updatednode-fetch-native@^1.4.1