@rollup/browser 3.9.1 → 3.10.1
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/LICENSE.md +0 -29
- package/dist/es/rollup.browser.js +3 -3
- package/dist/rollup.browser.d.ts +4 -0
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/package.json +1 -1
package/dist/rollup.browser.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ export interface PluginContextMeta {
|
|
|
216
216
|
export interface ResolvedId extends ModuleOptions {
|
|
217
217
|
external: boolean | 'absolute';
|
|
218
218
|
id: string;
|
|
219
|
+
resolvedBy: string;
|
|
219
220
|
}
|
|
220
221
|
|
|
221
222
|
export interface ResolvedIdMap {
|
|
@@ -225,10 +226,13 @@ export interface ResolvedIdMap {
|
|
|
225
226
|
interface PartialResolvedId extends Partial<PartialNull<ModuleOptions>> {
|
|
226
227
|
external?: boolean | 'absolute' | 'relative';
|
|
227
228
|
id: string;
|
|
229
|
+
resolvedBy?: string;
|
|
228
230
|
}
|
|
229
231
|
|
|
230
232
|
export type ResolveIdResult = string | NullValue | false | PartialResolvedId;
|
|
231
233
|
|
|
234
|
+
export type ResolveIdResultWithoutNullValue = string | false | PartialResolvedId;
|
|
235
|
+
|
|
232
236
|
export type ResolveIdHook = (
|
|
233
237
|
this: PluginContext,
|
|
234
238
|
source: string,
|