@chialab/node-resolve
Advanced tools
Comparing version 0.12.24 to 0.12.26
/** | ||
* @typedef {string|((importer: string) => string|false)|false} Alias | ||
* @typedef {string|((importer: string) => string|false|Promise<string|false>)|false} Alias | ||
*/ | ||
@@ -4,0 +4,0 @@ |
{ | ||
"name": "@chialab/node-resolve", | ||
"type": "module", | ||
"version": "0.12.24", | ||
"version": "0.12.26", | ||
"description": "A promise based node resolution library based on enhanced-resolve.", | ||
@@ -44,3 +44,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "a79495d2c3c31232d30d29d986af5b5e7211e521" | ||
"gitHead": "e44a09bfc01475ad93df4e8f24ac50508b58d6af" | ||
} |
/** | ||
* @typedef {string|((importer: string) => string|false)|false} Alias | ||
* @typedef {string|((importer: string) => string|false|Promise<string|false>)|false} Alias | ||
*/ | ||
@@ -57,5 +57,5 @@ /** | ||
} | ||
export type Alias = string | false | ((importer: string) => string | false); | ||
export type Alias = string | false | ((importer: string) => string | false | Promise<string | false>); | ||
export type AliasMap = { | ||
[key: string]: Alias; | ||
}; |
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
18486