@datadog/rspack-plugin 3.2.10-dev.1 → 3.2.11
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/src/index.d.ts +1 -6
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +1 -1
- package/dist/src/index.mjs.map +1 -1
- package/package.json +2 -3
package/dist/src/index.d.ts
CHANGED
|
@@ -5233,12 +5233,7 @@ type BundlerReport = GlobalData["bundler"] & {
|
|
|
5233
5233
|
outDir: string;
|
|
5234
5234
|
rawConfig?: any;
|
|
5235
5235
|
};
|
|
5236
|
-
type
|
|
5237
|
-
sourceOrHash: string;
|
|
5238
|
-
fileName: string;
|
|
5239
|
-
isEntry: boolean;
|
|
5240
|
-
};
|
|
5241
|
-
type InjectedValue = string | (() => Promise<string>) | ((chunk?: ChunkInfo) => string);
|
|
5236
|
+
type InjectedValue = string | (() => Promise<string>) | ((sourceOrHash?: string) => string);
|
|
5242
5237
|
declare enum InjectPosition {
|
|
5243
5238
|
BEFORE = 0,
|
|
5244
5239
|
MIDDLE = 1,
|