@datadog/vite-plugin 2.6.4 → 3.0.0-dev.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 CHANGED
@@ -30,7 +30,7 @@ export default defineConfig({
30
30
  // Configuration
31
31
  }),
32
32
  ],
33
- };
33
+ });
34
34
  ```
35
35
 
36
36
  > [!TIP]
@@ -1,4 +1,4 @@
1
- import { datadogRum, RumInitConfiguration as RumInitConfiguration$1 } from '@datadog/browser-rum';
1
+ import { RumInitConfiguration as RumInitConfiguration$1, datadogRum } from '@datadog/browser-rum';
2
2
  import { UnpluginOptions } from 'unplugin';
3
3
  import * as vite from 'vite';
4
4
 
@@ -15,25 +15,60 @@ declare class TrackedFilesMatcher {
15
15
  type MinifiedPathPrefix = `http://${string}` | `https://${string}` | `/${string}`;
16
16
  type SourcemapsOptions = {
17
17
  bailOnError?: boolean;
18
- disableGit?: boolean;
19
18
  dryRun?: boolean;
20
- intakeUrl?: string;
21
19
  maxConcurrency?: number;
22
20
  minifiedPathPrefix: MinifiedPathPrefix;
23
21
  releaseVersion: string;
24
22
  service: string;
25
23
  };
26
24
  type ErrorTrackingOptions = {
27
- disabled?: boolean;
25
+ enable?: boolean;
28
26
  sourcemaps?: SourcemapsOptions;
29
27
  };
30
28
 
31
- declare const CONFIG_KEY$2: "errorTracking";
29
+ declare const CONFIG_KEY$3: "errorTracking";
32
30
 
33
- type types$2 = {
31
+ type types$3 = {
34
32
  ErrorTrackingOptions: ErrorTrackingOptions;
35
33
  };
36
34
 
35
+ type Filter = (metric: Metric) => Metric | null;
36
+ type MetricsOptions = {
37
+ enable?: boolean;
38
+ enableStaticPrefix?: boolean;
39
+ /** @deprecated */
40
+ enableTracing?: boolean;
41
+ filters?: Filter[];
42
+ prefix?: string;
43
+ tags?: string[];
44
+ timestamp?: number;
45
+ };
46
+
47
+ declare const CONFIG_KEY$2: "metrics";
48
+
49
+ type types$2 = {
50
+ Filter: Filter;
51
+ Metric: Metric;
52
+ MetricsOptions: MetricsOptions;
53
+ };
54
+
55
+ declare const CONFIG_KEY$1: "output";
56
+ declare const FILE_KEYS: readonly ["build", "bundler", "dependencies", "errors", "logs", "metrics", "timings", "warnings"];
57
+
58
+ type FileKey = (typeof FILE_KEYS)[number];
59
+ type FileValue = boolean | string;
60
+ type OutputOptions = {
61
+ enable?: boolean;
62
+ files?: {
63
+ [K in FileKey]?: FileValue;
64
+ };
65
+ path?: string;
66
+ };
67
+
68
+ type types$1 = {
69
+ OutputOptions: OutputOptions;
70
+ };
71
+
37
72
  interface PrivacyOptions {
38
73
  exclude?: RegExp[] | string[];
39
74
  include?: RegExp[] | string[];
@@ -42,7 +77,7 @@ interface PrivacyOptions {
42
77
  }
43
78
 
44
79
  type RumOptions = {
45
- disabled?: boolean;
80
+ enable?: boolean;
46
81
  sdk?: SDKOptions;
47
82
  privacy?: PrivacyOptions;
48
83
  };
@@ -52,27 +87,21 @@ type SDKOptions = Assign<RumInitConfiguration, {
52
87
  clientToken?: string;
53
88
  }>;
54
89
 
55
- declare const CONFIG_KEY$1: "rum";
90
+ declare const CONFIG_KEY: "rum";
56
91
 
57
- type types$1 = {
92
+ type types = {
58
93
  RumOptions: RumOptions;
59
94
  RumPublicApi: RumPublicApi;
60
95
  RumInitConfiguration: RumInitConfiguration;
61
96
  };
62
97
 
63
- declare const CONFIG_KEY: "telemetry";
64
-
65
- type types = {
66
- Filter: Filter;
67
- Metric: Metric;
68
- TelemetryOptions: TelemetryOptions;
69
- };
70
-
71
98
  declare const ALL_ENVS: readonly ["development", "production", "test"];
72
99
  declare const SUPPORTED_BUNDLERS: readonly ["webpack", "vite", "esbuild", "rollup", "rspack"];
73
- declare const FULL_NAME_BUNDLERS: readonly ["esbuild", "rollup", "rspack", "vite", "webpack4", "webpack5"];
74
100
 
75
101
  type Assign<A, B> = Omit<A, keyof B> & B;
102
+ type WithRequired<T, K extends keyof T> = T & {
103
+ [P in K]-?: T[P];
104
+ };
76
105
  interface RepositoryData {
77
106
  commit: {
78
107
  hash: string;
@@ -109,8 +138,14 @@ type Output = FileReport & {
109
138
  type Entry = Output & {
110
139
  outputs: Output[];
111
140
  };
141
+ interface Metric {
142
+ metric: string;
143
+ type: 'count' | 'size' | 'duration';
144
+ points: [number, number][];
145
+ tags: string[];
146
+ }
112
147
  type Log = {
113
- bundler?: BundlerFullName;
148
+ bundler?: BundlerName;
114
149
  pluginName: string;
115
150
  type: LogLevel;
116
151
  message: string;
@@ -147,7 +182,6 @@ type BuildReport = {
147
182
  duration?: number;
148
183
  writeDuration?: number;
149
184
  };
150
- type BundlerFullName = (typeof FULL_NAME_BUNDLERS)[number];
151
185
  type BundlerName = (typeof SUPPORTED_BUNDLERS)[number];
152
186
  type BundlerReport = GlobalData['bundler'] & {
153
187
  outDir: string;
@@ -203,10 +237,10 @@ type Env = (typeof ALL_ENVS)[number];
203
237
  type TriggerHook<R> = <K extends keyof CustomHooks>(name: K, ...args: Parameters<NonNullable<CustomHooks[K]>>) => R;
204
238
  type GlobalContext = {
205
239
  asyncHook: TriggerHook<Promise<void[]>>;
206
- auth?: AuthOptions;
240
+ auth: AuthOptionsWithDefaults;
207
241
  build: BuildReport;
208
242
  bundler: BundlerReport;
209
- cwd: string;
243
+ buildRoot: string;
210
244
  env: GlobalData['env'];
211
245
  getLogger: GetLogger;
212
246
  git?: RepositoryData;
@@ -223,13 +257,14 @@ type HookFn<T extends Array<any>> = (...args: T) => void;
223
257
  type AsyncHookFn<T extends Array<any>> = (...args: T) => Promise<void> | void;
224
258
  type CustomHooks = {
225
259
  asyncTrueEnd?: () => Promise<void> | void;
226
- cwd?: HookFn<[string]>;
260
+ buildRoot?: HookFn<[string]>;
227
261
  init?: HookFn<[GlobalContext]>;
228
262
  buildReport?: AsyncHookFn<[BuildReport]>;
229
263
  bundlerReport?: HookFn<[BundlerReport]>;
230
264
  git?: AsyncHookFn<[RepositoryData]>;
231
- telemetryBundlerContext?: AsyncHookFn<[Report]>;
265
+ metrics?: AsyncHookFn<[Set<Metric>]>;
232
266
  syncTrueEnd?: () => void;
267
+ timings?: AsyncHookFn<[TimingsReport]>;
233
268
  };
234
269
  type PluginOptions = Assign<UnpluginOptions & CustomHooks, {
235
270
  name: PluginName;
@@ -240,7 +275,7 @@ type CustomPluginOptions = Assign<PluginOptions, {
240
275
  type GetPluginsArg = {
241
276
  bundler: any;
242
277
  context: GlobalContext;
243
- options: Options;
278
+ options: OptionsWithDefaults;
244
279
  data: GlobalData;
245
280
  stores: GlobalStores;
246
281
  };
@@ -249,25 +284,29 @@ type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'none';
249
284
  type AuthOptions = {
250
285
  apiKey?: string;
251
286
  appKey?: string;
287
+ site?: string;
252
288
  };
289
+ type AuthOptionsWithDefaults = WithRequired<AuthOptions, 'site'>;
253
290
  interface BaseOptions {
254
291
  auth?: AuthOptions;
255
292
  metadata?: BuildMetadata;
256
- disableGit?: boolean;
293
+ enableGit?: boolean;
257
294
  logLevel?: LogLevel;
258
295
  }
259
296
  interface Options extends BaseOptions {
260
- [CONFIG_KEY$2]?: ErrorTrackingOptions;
261
- [CONFIG_KEY$1]?: RumOptions;
262
- [CONFIG_KEY]?: TelemetryOptions;
297
+ [CONFIG_KEY$3]?: ErrorTrackingOptions;
298
+ [CONFIG_KEY$2]?: MetricsOptions;
299
+ [CONFIG_KEY$1]?: OutputOptions;
300
+ [CONFIG_KEY]?: RumOptions;
263
301
  customPlugins?: GetCustomPlugins;
264
302
  }
303
+ type OptionsWithDefaults = Assign<Assign<Options, Required<BaseOptions>>, {
304
+ auth: AuthOptionsWithDefaults;
305
+ }>;
265
306
  type PluginName = `datadog-${Lowercase<string>}-plugin`;
266
307
  type GlobalData = {
267
308
  bundler: {
268
309
  name: BundlerName;
269
- fullName: BundlerFullName;
270
- variant: string;
271
310
  version: string;
272
311
  };
273
312
  env: Env;
@@ -312,42 +351,15 @@ interface TimingsReport {
312
351
  loaders?: TimingsMap;
313
352
  modules?: TimingsMap;
314
353
  }
315
- interface Report {
316
- timings: TimingsReport;
317
- }
318
-
319
- interface Metric {
320
- metric: string;
321
- type: 'count' | 'size' | 'duration';
322
- value: number;
323
- tags: string[];
324
- }
325
- type Filter = (metric: Metric) => Metric | null;
326
- type OutputOptions = boolean | string | {
327
- destination: string;
328
- timings?: boolean;
329
- metrics?: boolean;
330
- };
331
- type TelemetryOptions = {
332
- disabled?: boolean;
333
- /** @deprecated */
334
- enableTracing?: boolean;
335
- endPoint?: string;
336
- filters?: Filter[];
337
- output?: OutputOptions;
338
- prefix?: string;
339
- tags?: string[];
340
- timestamp?: number;
341
- };
342
354
 
343
355
  type VitePluginOptions = Options;
344
356
 
345
357
  declare const datadogVitePlugin: (options: Options) => vite.Plugin<any>[];
346
358
  declare const version: string;
347
359
  declare const helpers: {
348
- telemetry: {
360
+ metrics: {
349
361
  filters: ((metric: Metric) => Metric | null)[];
350
362
  };
351
363
  };
352
364
 
353
- export { type types$2 as ErrorTrackingTypes, type types$1 as RumTypes, type types as TelemetryTypes, type VitePluginOptions, datadogVitePlugin, helpers, version };
365
+ export { type types$3 as ErrorTrackingTypes, type types$2 as MetricsTypes, type types$1 as OutputTypes, type types as RumTypes, type VitePluginOptions, datadogVitePlugin, helpers, version };
package/dist/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
- "use strict";var e=require("unplugin"),t=require("chalk"),n=require("async-retry"),s=require("buffer"),o=require("fs/promises"),r=require("fs"),i=require("path"),a=require("stream"),u=require("outdent"),c=require("p-queue"),p=require("zlib"),l=require("@datadog/js-instrumentation-wasm"),d=require("@rollup/pluginutils"),m=require("pretty-bytes"),f=require("perf_hooks"),g=require("glob"),h=require("simple-git"),y=require("os"),w=require("module");function b(e){var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var s=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,s.get?s:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var v=b(require("vite"));const $="__datadog-helper-file",k=["development","production","test"],S="datadog-build-plugins",E=[400,403,413],D=e=>{const{auth:t,url:s,method:o="GET",getData:r,type:i="text"}=e,a={retries:0===e.retries?0:e.retries||5,onRetry:e.onRetry,maxTimeout:e.maxTimeout,minTimeout:e.minTimeout};return n((async(e,n)=>{let a;try{const e={method:o,duplex:"half"};let n={"X-Datadog-Origin":"build-plugins"};if(t?.apiKey&&(n["DD-API-KEY"]=t.apiKey),t?.appKey&&(n["DD-APPLICATION-KEY"]=t.appKey),"function"==typeof r){const{data:t,headers:s}=await r();e.body=t,n={...n,...s}}a=await fetch(s,{...e,headers:n})}catch(t){return e(t),{}}if(!a.ok){const t=`HTTP ${a.status} ${a.statusText}`;if(E.includes(a.status))return e(new Error(t)),{};throw new Error(t)}try{let e;return e="json"===i?await a.json():await a.text(),e}catch(t){return e(t),{}}}),a)},x=e=>({message:t,context:n})=>D({retries:2,minTimeout:100,url:"https://browser-http-intake.logs.datadoghq.com/v1/input/pub44d5f4eb86e1392037b7501f7adc540e",method:"POST",type:"json",getData:async()=>{const s={ddsource:e.packageName||S,message:t,service:"build-plugins",team:"language-foundations",env:e.env,version:e.version,bundler:{name:e.bundler.name,version:e.bundler.version},metadata:e.metadata,...n};return{data:JSON.stringify(s),headers:{"Content-Type":"application/json"}}}}),M=async(e,t)=>{await(async e=>o.mkdir(e,{recursive:!0}))(i.dirname(e)),await o.writeFile(e,t,{encoding:"utf-8"})},P=(e,t)=>{var n;n=i.dirname(e),r.mkdirSync(n,{recursive:!0}),r.writeFileSync(e,t,{encoding:"utf-8"})},T=e=>{try{return r.existsSync(e)}catch(e){if("ENOENT"===e.code)return!1;throw e}},j=async(e,t)=>{if("function"==typeof r.openAsBlob){const n=await r.openAsBlob(e,{type:t.contentType});return new s.File([n],t.filename)}{const n=a.Readable.toWeb(r.createReadStream(e)),o=await new Response(n).blob();return new s.File([o],t.filename,{type:t.contentType})}},O=async e=>{const t={empty:!1,exists:!0};try{const{size:n}=await o.stat(e);0===n&&(t.empty=!0)}catch(e){if("ENOENT"!==e.code)throw e;t.exists=!1}return t},N=e=>e.replace(/^@dd\/(datadog-|internal-)?|^datadog-|-plugin$/g,""),z=e=>e.includes($),R=e=>{const t=Math.floor(e/1e3/60/60/24),n=new Date(e-24*t*60*60*1e3),s=n.getUTCHours(),o=n.getUTCMinutes(),r=n.getUTCSeconds(),i=n.getUTCMilliseconds(),a=`${t?`${t}d `:""}${s?`${s}h `:""}${o?`${o}m `:""}${r?`${r}s`:""}`.trim();return`${a}${!a||i?` ${i}ms`:""}`.trim()},I=(e,t=60,n="[...]")=>{if(e.length<=t)return e;const s=Math.max(4,t-n.length),o=Math.min(10,Math.floor(s/2)),r=s-o;return`${e.slice(0,o)}${n}${e.slice(-r)}`},A=(e="")=>{try{if(!e||e.startsWith("git@"))return e;const t=new URL(e),n="/"===t.pathname?"":t.pathname;return`${t.protocol?`${t.protocol}//`:""}${t.host}${n}`}catch{return e}};let C=0;const F={debug:0,info:1,warn:2,error:3,none:4},q=e=>e.split(">").map(N).join(">"),L=(e,n,s,o)=>{const r=q(e);return(i,a="debug",{forward:u}={})=>{let c=t.dim,p=console.log;"error"===a?(c=t.red,p=console.error):"warn"===a?(c=t.yellow,p=console.warn):"info"===a&&(c=t.cyan,p=console.log);const l=`[${n.metadata?.name?`${n.metadata.name}|`:""}${a}|${n.bundler.fullName}|${r}]`,d="string"==typeof i?i:JSON.stringify(i,null,2);if(s.logs.push({bundler:n.bundler.fullName,pluginName:e,type:a,message:d,time:Date.now()}),"error"===a&&s.errors.push(d),"warn"===a&&s.warnings.push(d),u){const t=async()=>{try{const t=x(n);await t({message:d,context:{plugin:e,status:a}})}catch(t){L(e,n,s,o)(`Error forwarding log: ${t}`,"debug")}};s.queue.push(t())}F[a]>=F[o]&&p(`${c(l)} ${d}`)}},_=(e,n,s)=>(o,r={})=>{const{level:i="debug",start:a=!0,log:u=!0,tags:c=[]}=r,p={pluginName:e,label:o,spans:[],tags:[...c,`plugin:${e}`,`level:${i}`],logLevel:i,total:0};n.push(p);const l=()=>p.spans.filter((e=>!e.end)),d=n=>{l().length||(!p.spans.length&&u&&s(t.dim(`[${t.cyan(o)}] : start`),"debug"),p.spans.push({start:n||Date.now(),tags:[`plugin:${e}`]}))},m=(e,n=!0)=>{const r=l();if(r?.length){r.length>1&&s(`Timer ${t.cyan(o)} has more than one ongoing span.`,"debug");for(const t of r)t.end=e||Date.now()}else n&&s(`Timer ${t.cyan(o)} cannot be paused, no ongoing span.`,"debug")};if(a){let e;"number"==typeof a&&(e=a),d(e)}return{timer:p,resume:d,end:e=>{m(e,!1);const n=p.spans.reduce(((e,t)=>e+(t.end-t.start)),0);p.total=n,u&&s(`[${t.cyan(o)}] : ${t.cyan(R(n))}`,i)},pause:m,tag:(e,t={})=>{const{span:n=!1}=t;if(n){const t=l();for(const n of t)n.tags.push(...e)}else p.tags.push(...e)}}},H=(e,t,n="warn")=>s=>{const o=L(s,e,t,n);return{getLogger:o=>H(e,t,n)(`${q(s)}>${o}`),time:_(s,t.timings,o),error:(e,t)=>o(e,"error",t),warn:(e,t)=>o(e,"warn",t),info:(e,t)=>o(e,"info",t),debug:(e,t)=>o(e,"debug",t)}},K=["buildEnd","buildStart","load","loadInclude","resolveId","transform","transformInclude","watchChange","writeBundle","cwd","init","buildReport","bundlerReport","git"],B=(e,t,n,s)=>(...o)=>{const r=s.time(`${e} | ${t}`,{log:!1,tags:["type:hook",`hook:${t}`]}),i=n(...o);return i instanceof Promise?i.finally((()=>{r.end()})):(r.end(),i)},W=(e,t,n)=>{const s=e.getLogger(S);return e=>{const o=s.time(`hook | init ${n}`,{log:!1}),r=t(e).map((e=>((e,t)=>{const n={...e},s=N(e.name);for(const o of K){const r=e[o];r&&(n[o]=B(s,o,r,t))}return n})(e,s))),i=r.map((e=>`plugin:${e.name}`));return o.tag(i),o.end(),r}},U="errorTracking",G="datadog-error-tracking-plugin",J=(e,n,s)=>{if(".map"!==i.extname(s))throw new Error(`The file ${t.green.bold(s)} is not a sourcemap.`);const o=s.replace(/\.map$/,""),r=i.relative(n,o),a=((e,t)=>{if(e.startsWith("/"))return i.join(e,t);try{const n=e.replace(/\/*$/,"/"),s=new URL(n),o=t.replace(/^[\\/]*/,"");return new URL(o,s).href}catch{return`${e}${t}`}})(e,r);return{minifiedFilePath:o,minifiedUrl:a,relativePath:r}},V=/[/]+|[\\]+/g,Q=/^[/]+|^[\\]+|[/]+$|[\\]+$/g,Y=(e,t)=>{const n=e.replace(Q,"").split(V),s=t.replace(Q,"").split(V),o=n.join("/");let r="";for(let e=0;e<s.length;e+=1){const t=s.slice(-e).join("/");o.startsWith(t)&&(r=t)}return r},X=async(e,t,n,s)=>{const o=await(async(e,t)=>{const[n,s]=await Promise.all([O(e.minifiedFilePath),O(e.sourcemapFilePath)]);return{file:n,sourcemap:s,repeatedPrefix:Y(e.relativePath,t)}})(e,n),r=[],a=[],u=new Map([["event",{type:"string",options:{contentType:"application/json",filename:"event"},value:JSON.stringify({...t,minified_url:e.minifiedUrl})}],["source_map",{type:"file",path:e.sourcemapFilePath,options:{filename:"source_map",contentType:"application/json"}}],["minified_file",{type:"file",path:e.minifiedFilePath,options:{filename:"minified_file",contentType:"application/javascript"}}]]);if(s)try{u.set("repository",{type:"string",options:{contentType:"application/json",filename:"repository"},value:JSON.stringify({data:[{files:s.trackedFilesMatcher.matchSourcemap(e.sourcemapFilePath,(t=>{a.push(`${i.basename(e.sourcemapFilePath)}: "${t}"`)})),hash:s.hash,repository_url:s.remote}],version:1})})}catch(t){a.push(`Could not attach git data for sourcemap ${e.sourcemapFilePath}: ${t.message}`)}return o.file.empty&&r.push(`Minified file is empty: ${e.minifiedFilePath}`),o.file.exists||r.push(`Minified file not found: ${e.minifiedFilePath}`),o.sourcemap.empty&&r.push(`Sourcemap file is empty: ${e.sourcemapFilePath}`),o.sourcemap.exists||r.push(`Sourcemap file not found: ${e.sourcemapFilePath}`),o.repeatedPrefix&&a.push(`The minified file path contains a repeated pattern with the minified path prefix: ${o.repeatedPrefix}`),{content:u,errors:r,warnings:a}},Z=t.green.bold,ee=t.yellow.bold,te=t.red.bold,ne=(e,t={})=>async()=>{const n=new FormData,s=p.createGzip();for(const[t,s]of e.content){const e="file"===s.type?await j(s.path,s.options):new Blob([s.value],{type:s.options.contentType});n.append(t,e,s.options.filename)}const o=new Request("fake://url",{method:"POST",body:n});return{data:a.Readable.fromWeb(o.body).pipe(s),headers:{"Content-Encoding":"gzip",...t,...Object.fromEntries(o.headers.entries())}}},se=async(e,t,n,s)=>{const o=Date.now(),r=t.minifiedPathPrefix,i={git_repository_url:n.git?.remote,git_commit_sha:n.git?.hash,plugin_version:n.version,project_path:n.outDir,service:t.service,type:"js_sourcemap",version:t.releaseVersion},a=await Promise.all(e.map((e=>X(e,i,r,n.git)))),u=a.map((e=>e.errors)).flat(),p=a.map((e=>e.warnings)).flat();if(p.length>0&&s.warn(`Warnings while preparing payloads:\n - ${p.join("\n - ")}`),u.length>0){const e=`Failed to prepare payloads, aborting upload :\n - ${u.join("\n - ")}`;if(s.error(e),!0===t.bailOnError)throw new Error(e);return}const{errors:l,warnings:d}=await(async(e,t,n,s)=>{const o=[],r=[];if(!n.apiKey)return o.push({error:new Error("No authentication token provided")}),{errors:o,warnings:r};if(0===e.length)return r.push("No sourcemaps to upload"),{errors:o,warnings:r};const i=new(c.default?c.default:c)({concurrency:t.maxConcurrency}),a={"DD-EVP-ORIGIN":`${n.bundlerName}-build-plugin_sourcemaps`,"DD-EVP-ORIGIN-VERSION":n.version},u=[];for(const c of e){const e={sourcemap:c.content.get("source_map")?.path.replace(n.outDir,"."),file:c.content.get("minified_file")?.path.replace(n.outDir,".")};s.debug(`Queuing ${Z(e.sourcemap)} | ${Z(e.file)}`),u.push(i.add((async()=>{try{await D({auth:{apiKey:n.apiKey},url:t.intakeUrl,method:"POST",getData:ne(c,a),onRetry:(t,n)=>{const o=`Failed to upload ${ee(e.sourcemap)} | ${ee(e.file)}:\n ${t.message}\nRetrying ${n}/5`;r.push(o),s.debug(o)}}),s.debug(`Sent ${Z(e.sourcemap)} | ${Z(e.file)}`)}catch(n){if(o.push({metadata:e,error:n}),!0===t.bailOnError)throw n}})))}return await Promise.all(u),await i.onIdle(),{warnings:r,errors:o}})(a,t,{apiKey:n.apiKey,bundlerName:n.bundlerName,version:n.version,outDir:n.outDir},s);if(s.info(`Done uploading ${Z(e.length.toString())} sourcemaps in ${Z(R(Date.now()-o))}.`),l.length>0){const e=`Failed to upload some sourcemaps:\n${` - ${l.map((({metadata:e,error:t})=>e?`${te(e.file)} | ${te(e.sourcemap)} : ${t.message}`:t.message)).join("\n - ")}`}`;if(s.error(e),!0===t.bailOnError)throw new Error(e)}d.length>0&&s.warn(`Warnings while uploading sourcemaps:\n - ${d.join("\n - ")}`)},oe=async(e,n,s)=>{const o=t.green.bold,r=Object.entries(e.sourcemaps).map((([e,t])=>` - ${e}: ${o(t.toString())}`)).join("\n"),i=s.time("get sourcemaps files"),a=((e,t)=>{if(!t.outputs||0===t.outputs.length)throw new Error("No output files found.");return t.outputs.filter((e=>e.filepath.endsWith(".map"))).map((e=>e.filepath)).map((n=>({...J(e.minifiedPathPrefix,t.outDir,n),sourcemapFilePath:n,minifiedPathPrefix:e.minifiedPathPrefix})))})(e.sourcemaps,{outDir:n.outDir,outputs:n.outputs});i.end();const c=u.outdent`
2
- Uploading ${o(a.length.toString())} sourcemaps with configuration:
3
- ${r}
4
- `;s.info(c);const p=s.time("send sourcemaps");await se(a,e.sourcemaps,{apiKey:n.apiKey,bundlerName:n.bundlerName,git:n.git,outDir:n.outDir,version:n.version},s),p.end()},re=`https://sourcemap-intake.${process.env.DATADOG_SITE||"datadoghq.com"}/api/v2/srcmap`,ie=e=>{const n=t.bold.red,s=e[U]||{},o={errors:[]};if(s.sourcemaps){s.sourcemaps.releaseVersion||o.errors.push(`${n("sourcemaps.releaseVersion")} is required.`),s.sourcemaps.service||o.errors.push(`${n("sourcemaps.service")} is required.`),s.sourcemaps.minifiedPathPrefix||o.errors.push(`${n("sourcemaps.minifiedPathPrefix")} is required.`),s.sourcemaps.minifiedPathPrefix&&((e=>{let t;try{t=new URL(e).host}catch{}return!(!t&&!e.startsWith("/"))})(s.sourcemaps.minifiedPathPrefix)||o.errors.push(`${n("sourcemaps.minifiedPathPrefix")} must be a valid URL or start with '/'.`));const e={bailOnError:!1,disableGit:!1,dryRun:!1,maxConcurrency:20,intakeUrl:process.env.DATADOG_SOURCEMAP_INTAKE_URL||s.sourcemaps.intakeUrl||re,...s.sourcemaps};o.config=e}return o},ae=({options:e,context:t})=>{const n=t.getLogger(G),s=n.time("validate options"),o=((e,t)=>{const n=[],s=ie(e);if(n.push(...s.errors),n.length)throw t.error(`\n - ${n.join("\n - ")}`),new Error(`Invalid configuration for ${G}.`);const o={disabled:!e[U],...e[U],sourcemaps:void 0};return s.config&&(o.sourcemaps=s.config),o})(e,n);return s.end(),o.disabled?[]:[{name:G,enforce:"post",async buildReport(e){if(!o.disabled&&o.sourcemaps){const s=n.time("sourcemaps process");await oe(o,{apiKey:t.auth?.apiKey,bundlerName:t.bundler.fullName,git:t.git,outDir:t.bundler.outDir,outputs:e.outputs,version:t.version},n),s.end()}}}]};var ue=(e=>(e[e.BEFORE=0]="BEFORE",e[e.MIDDLE=1]="MIDDLE",e[e.AFTER=2]="AFTER",e))(ue||{});const ce="rum",pe="datadog-rum-plugin",le="datadog-rum-privacy-plugin";const de=e=>`DD_RUM.init({${JSON.stringify(e.sdk).replace(/(^{|}$)/g,"")}});\n`,me=(e,t)=>{const n=e.sdk;if(n.clientToken)return de(e);if(!t.auth?.apiKey||!t.auth?.appKey)throw new Error('Missing "auth.apiKey" and/or "auth.appKey" to fetch "rum.sdk.clientToken".');return async()=>{let s;try{const e=await D({url:`https://api.datadoghq.com/api/v2/rum/applications/${n.applicationId}`,type:"json",auth:t.auth});s=e.data?.attributes?.client_token}catch(e){throw new Error(`Could not fetch the clientToken: ${e.message}`)}if(!s)throw new Error("Missing clientToken in the API response.");return de({...e,sdk:{clientToken:s,...n}})}},fe=e=>{const n=t.bold.red,s=e[ce]||{},o={errors:[]};if(!s.sdk)return o;s.sdk.applicationId||o.errors.push(`Missing ${n("applicationId")} in the SDK configuration.`),e.auth?.apiKey&&e.auth?.appKey||s.sdk.clientToken||o.errors.push(`Missing ${n('"auth.apiKey"')} and/or ${n('"auth.appKey"')} to fetch missing client token.`);return o.config={applicationId:"unknown_application_id",allowUntrustedEvents:!1,compressIntakeRequests:!1,defaultPrivacyLevel:"mask",enablePrivacyForActionName:!1,sessionReplaySampleRate:0,sessionSampleRate:100,silentMultipleInit:!1,site:"datadoghq.com",startSessionReplayRecordingManually:!1,storeContextsAcrossPages:!1,telemetrySampleRate:20,traceSampleRate:100,trackingConsent:"granted",trackLongTasks:!1,trackResources:!1,trackUserInteractions:!1,trackViewsManually:!1,...s.sdk},o},ge=e=>{const t=e[ce]||{},n={errors:[]};if(t.privacy){const e={exclude:[/\/node_modules\//,/\.preval\./,/^[!@#$%^&*()=+~`-]/],include:[/\.(?:c|m)?(?:j|t)sx?$/],addToDictionaryFunctionName:"$",helperCodeExpression:"/*__PURE__*/((q='$DD_A_Q',g=globalThis)=>(g[q]=g[q]||[],(v=>(g[q].push(v),v))))()"};n.config={...e,...t.privacy}}return n},he=({options:e,context:t})=>{const n=((e,t)=>{const n=[],s=fe(e),o=ge(e);if(n.push(...s.errors),n.push(...o.errors),n.length)throw t.error(`\n - ${n.join("\n - ")}`),new Error(`Invalid configuration for ${pe}.`);const r={disabled:!e[ce],...e[ce],sdk:void 0,privacy:void 0};return s.config&&(r.sdk=s.config),o.config&&(r.privacy=o.config,t.debug(`datadog-rum-privacy plugin options: ${JSON.stringify(r.privacy,((e,t)=>t instanceof RegExp?t.toString():t))}`,{forward:!0})),r})(e,t.getLogger(pe)),s=[];if(n.disabled)return s;if(n.sdk&&(t.inject({type:"file",position:ue.MIDDLE,value:i.join(__dirname,"./rum-browser-sdk.js")}),t.inject({type:"code",position:ue.MIDDLE,value:me(n,t)})),n.privacy){t.inject({type:"file",position:ue.BEFORE,value:i.join(__dirname,"./privacy-helpers.js")});const e=((e,t)=>{const n=t.getLogger(le),s=function(e,t){const n={privacy:{addToDictionaryHelper:{expression:{code:e}}}};return["esbuild","webpack","rspack"].includes(t)&&(n.output={...n.output,inlineSourceMap:!1,embedCodeInSourceMap:!0}),n}(e.helperCodeExpression,t.bundler.name),o=d.createFilter(e.include,e.exclude);return{name:le,enforce:"post",transformInclude:e=>o(e),async transform(e,t){try{return l.instrument({id:t,code:e},s)}catch(t){return n.error(`Instrumentation Error: ${t}`,{forward:!0}),{code:e}}}}})(n.privacy,t);s.push(e)}return s},ye="telemetry",we="datadog-telemetry-plugin",be=[e=>/modules\.tree\.(count|size)$/.test(e.metric)?null:e,e=>e.tags.some((e=>/^assetName:.*\.map$/.test(e)||/^moduleName:\/node_modules/.test(e)))?null:e,e=>{const t={size:1e5,count:10,duration:1e3};return/(entries|loaders|warnings|errors)\.count$/.test(e.metric)&&(t.count=0),/(modules\.(dependencies|dependents)$)/.test(e.metric)&&(t.count=30),/modules\.tree\.count$/.test(e.metric)&&(t.count=150),/modules\.tree\.size$/.test(e.metric)&&(t.size=15e5),/entries\.size$/.test(e.metric)&&(t.size=0),/entries\.modules\.count$/.test(e.metric)&&(t.count=0),e.value>t[e.type]?e:null}],ve=(e,t)=>({type:"gauge",tags:[...e.tags,...t.tags],metric:`${t.prefix?`${t.prefix}.`:""}${e.metric}`,points:[[t.timestamp,e.value]]}),$e=(e="")=>e.endsWith("/")?e:`${e}/`,ke=(e,t)=>{let n=e;return e.split($e(t)),n.split("!").pop().replace(/(.*)?\/node_modules\//,"/node_modules/").replace(/^((\.)*\/)+/,"")},Se=(e,t)=>e.split("!").pop().replace($e(t),"./"),Ee=(e,t,n)=>{let s=e.name||e.userRequest;return s||(s=((e,t)=>{let n=e.userRequest;if(!n){let s;s=t.moduleGraph&&"function"==typeof t.moduleGraph.getIssuer?t.moduleGraph.getIssuer(e):e.issuer,n=s?.userRequest,n||(n=e._identifier?.split("!").pop())}return n||"unknown"})(e,t)),Se(s||"no-name",n)},De=e=>e.replace(/^.*\/node_modules\/(@[a-z0-9][\w-.]+\/[a-z0-9][\w-.]*|[^/]+).*$/,"$1"),xe=e=>e.map((e=>({type:e?.constructor?.name??typeof e,name:e?.name,value:"string"==typeof e?e:void 0}))),Me=(e,t,n,s)=>{const o=new Set;if(s){const{timings:e}=s;e&&(e.tapables&&((e,t)=>{t.add({metric:"plugins.count",type:"count",value:e.size,tags:[]});for(const n of e.values()){let e=0,s=0;for(const o of Object.values(n.events)){let r=0;s+=o.values.length;for(const t of o.values){const n=t.end-t.start;r+=n,e+=n}t.add({metric:"plugins.hooks.duration",type:"duration",value:r,tags:[`pluginName:${n.name}`,`hookName:${o.name}`]}).add({metric:"plugins.hooks.increment",type:"count",value:o.values.length,tags:[`pluginName:${n.name}`,`hookName:${o.name}`]})}t.add({metric:"plugins.duration",type:"duration",value:e,tags:[`pluginName:${n.name}`]}).add({metric:"plugins.increment",type:"count",value:s,tags:[`pluginName:${n.name}`]})}})(e.tapables,o),e.loaders&&((e,t)=>{t.add({metric:"loaders.count",type:"count",value:e.size,tags:[]});for(const n of e.values())t.add({metric:"loaders.duration",type:"duration",value:n.duration,tags:[`loaderName:${n.name}`]}).add({metric:"loaders.increment",type:"count",value:n.increment,tags:[`loaderName:${n.name}`]})})(e.loaders,o))}((e,t)=>{const n=e.inputs||[],s=e.outputs||[],o=e.entries||[],r=e.warnings.length,i=e.errors.length,a=e.duration,u=new Map,c=new Map,p=new Map;for(const e of o){for(const t of e.inputs)u.has(t.filepath)||u.set(t.filepath,[]),u.get(t.filepath).push(e.name);for(const t of e.outputs){const n=t.filepath.replace(/\.map$/,"");p.has(n)||p.set(n,[]),p.get(n).push(e.name)}}for(const e of s)for(const t of e.inputs)c.has(t.filepath)||c.set(t.filepath,[]),c.get(t.filepath).push(e.name);t.add({metric:"assets.count",type:"count",value:s.length,tags:[]}).add({metric:"entries.count",type:"count",value:o.length,tags:[]}).add({metric:"errors.count",type:"count",value:i,tags:[]}).add({metric:"modules.count",type:"count",value:n.length,tags:[]}).add({metric:"warnings.count",type:"count",value:r,tags:[]}),a&&t.add({metric:"compilation.duration",type:"duration",value:a,tags:[]});for(const e of n){const n=[`moduleName:${e.name}`,`moduleType:${e.type}`];u.has(e.filepath)&&n.push(...u.get(e.filepath).map((e=>`entryName:${e}`))),c.has(e.filepath)&&n.push(...c.get(e.filepath).map((e=>`assetName:${e}`))),t.add({metric:"modules.size",type:"size",value:e.size,tags:n}).add({metric:"modules.dependencies",type:"count",value:e.dependencies.size,tags:n}).add({metric:"modules.dependents",type:"count",value:e.dependents.size,tags:n})}for(const e of s){const n=[`assetName:${e.name}`,`assetType:${e.type}`],s=e.filepath.replace(/\.map$/,"");p.has(s)&&n.push(...p.get(s).map((e=>`entryName:${e}`))),t.add({metric:"assets.size",type:"size",value:e.size,tags:n}).add({metric:"assets.modules.count",type:"count",value:e.inputs.length,tags:n})}for(const e of o){const n=[`entryName:${e.name}`];t.add({metric:"entries.size",type:"size",value:e.size,tags:n}).add({metric:"entries.modules.count",type:"count",value:e.inputs.length,tags:n}).add({metric:"entries.assets.count",type:"count",value:e.outputs.length,tags:n})}})(e,o);for(const e of o)if(t.filters?.length){let s=e;for(const n of t.filters){if(!s)break;s=n(e)}s&&n.add(ve(s,t))}else n.add(ve(e,t));n.add(ve({metric:"metrics.count",type:"count",value:n.size+1,tags:[]},t))},Pe=async(e,t,n,s)=>{if("string"!=typeof t&&"object"!=typeof t&&!t)return;const{report:o,metrics:r}=e,a=Date.now();let u="";const c={timings:!0,metrics:!0};"object"==typeof t?(u=t.destination,c.timings=t.timings||!1,c.metrics=t.metrics||!1):"string"==typeof t&&(u=t);const p=i.resolve(s,u);try{const e={},t={};c.timings&&o?.timings&&(t.timings={content:{tapables:o.timings.tapables?Array.from(o.timings.tapables.values()):null,loaders:o.timings.loaders?Array.from(o.timings.loaders.values()):null,modules:o.timings.modules?Array.from(o.timings.modules.values()):null}}),c.metrics&&(t.metrics={content:Array.from(r)});const s=Object.entries(t).map((async([t,s])=>{const o=Date.now();n.debug(`Start writing ${t}.json.`);try{await(async(e,t)=>{const n=JSON.stringify(t,null,4);return M(e,n)})(i.join(p,`${t}.json`),s.content),n.debug(`Wrote ${t}.json in ${R(Date.now()-o)}`)}catch(s){n.error(`Failed to write ${t}.json in ${R(Date.now()-o)}`),e[t]=s}}));await Promise.all(s),n.debug(`Wrote files in ${R(Date.now()-a)}.`);const u=Object.keys(e);u.length&&n.error(`Couldn't write files.\n${u.map((t=>` - ${t}: ${e[t].toString()}`))}`)}catch(e){n.error(`Couldn't write files. ${e}`)}},Te=t.bold.red,je=t.bold.cyan,Oe=e=>(t,n)=>{let s,o;return"function"==typeof e?(s=e(t),o=e(n)):(s=t[e],o=n[e]),s>o?-1:s<o?1:0},Ne=(e,t)=>{if(!t||!t.size)return[];const n=Array.from(t.values());n.sort(Oe("duration"));const s={name:`${e} duration`,values:n.map((e=>({name:e.name,value:R(e.duration)}))),top:!0};n.sort(Oe("increment"));return[s,{name:`${e} hits`,values:n.map((e=>({name:e.name,value:e.increment.toString()}))),top:!0}]},ze=(e,t,n)=>{const s=[];var o;n&&(s.push(...Ne("Loader",n.timings.loaders)),s.push(...Ne("Tapable",n.timings.tapables)),s.push(...Ne("Module",n.timings.modules))),s.push(...(e=>{const t={name:"Module total dependents",values:[],top:!0},n={name:"Module total dependencies",values:[],top:!0},s={name:"Module size",values:[],top:!0},o={name:"Module aggregated size",values:[],top:!0},r=new Set,i=(e=>{const t={bundler:e.bundler,errors:e.errors,metadata:e.metadata,warnings:e.warnings,logs:e.logs,timings:e.timings,start:e.start,end:e.end,duration:e.duration,writeDuration:e.writeDuration,entries:[],inputs:[],outputs:[]};for(const n of e.entries||[]){const e={...n,inputs:[],outputs:[]};n.inputs&&(e.inputs=n.inputs.map((e=>e.filepath))),n.outputs&&(e.outputs=n.outputs.map((e=>e.filepath))),t.entries.push(e)}for(const n of e.inputs||[]){const e={...n,dependencies:[],dependents:[]};if(n.dependencies)for(const t of n.dependencies)e.dependencies.push(t.filepath);if(n.dependents)for(const t of n.dependents)e.dependents.push(t.filepath);t.inputs.push(e)}for(const n of e.outputs||[]){const e={...n,inputs:[]};n.inputs&&(e.inputs=n.inputs.map((e=>e.filepath))),t.outputs.push(e)}return t})(e.build),a=new Map,u=new Map,c=new Map;for(const e of i.inputs||[]){if("map"===e.type)continue;const t=new Set(e.dependencies),n=new Set(e.dependents);for(const n of t)c.has(n)||c.set(n,new Set),c.get(n).add(e.filepath);for(const t of n)u.has(t)||u.set(t,new Set),u.get(t).add(e.filepath);if(u.has(e.filepath)){const n=u.get(e.filepath);for(const e of n)t.add(e)}if(c.has(e.filepath)){const t=c.get(e.filepath);for(const e of t)n.add(e)}u.set(e.filepath,t),c.set(e.filepath,n),a.set(e.filepath,{name:e.name,size:e.size,dependencies:t,dependents:n})}for(const[e,t]of a){const n=u.get(e)||new Set,s=c.get(e)||new Set;let o=t.size;for(const e of n)o+=a.get(e)?.size||0;r.add({name:t.name,size:t.size,aggregatedSize:o,dependents:s,dependencies:n})}if(!r.size)return[t,n,s];const p=Array.from(r);return p.sort(Oe((e=>e.dependents.size))),t.values=p.map((e=>({name:e.name,value:e.dependents.size.toString()}))),p.sort(Oe((e=>e.dependencies.size))),n.values=p.map((e=>({name:e.name,value:e.dependencies.size.toString()}))),p.sort(Oe("size")),s.values=p.map((e=>({name:e.name,value:m(e.size)}))),p.sort(Oe("aggregatedSize")),o.values=p.map((e=>({name:e.name,value:m(e.aggregatedSize||e.size)}))),[t,n,s,o]})(e)),s.push(...(o=e,[{name:"Asset size",values:(o.build.outputs||[]).filter((e=>"map"!==e.type)).sort(Oe((e=>e.size))).map((e=>({name:e.name,value:m(e.size)}))),top:!0},{name:"Entry aggregated size",values:(o.build.entries||[]).sort(Oe((e=>e.size))).map((e=>({name:e.name,value:m(e.size)}))),top:!0},{name:"Entry number of modules",values:(o.build.entries||[]).sort(Oe((e=>e.size))).map((e=>({name:e.name,value:e.inputs.length.toString()})))||[],top:!0}])),s.push(...(e=>{const t={name:"General Numbers",values:[],top:!1},n=e.build.inputs?e.build.inputs.length:0,s=e.build.outputs?e.build.outputs.length:0,o=e.build.warnings.length,r=e.build.errors.length,i=e.build.entries?e.build.entries.length:0;return e.build.start&&t.values.push({name:"Overhead duration",value:R(e.build.start-e.start)}),e.build.duration&&t.values.push({name:"Build duration",value:R(e.build.duration)}),e.build.writeDuration&&t.values.push({name:"Write duration",value:R(e.build.writeDuration)}),t.values.push({name:"Number of modules",value:n.toString()},{name:"Number of assets",value:s.toString()},{name:"Number of entries",value:i.toString()},{name:"Number of warnings",value:o.toString()},{name:"Number of errors",value:r.toString()}),[t]})(e));const r=(e=>{let t="";for(const t of e){t.top&&t.values.length>=5&&(t.values=t.values.slice(0,5),t.name=`Top 5 ${t.name}`);for(const e of t.values)e.name=I(e.name,60)}const n=Math.max(...e.map((e=>e.name.length))),s=Math.max(...e.flatMap((e=>e.values.map((e=>e.name.length))))),o=Math.max(...e.flatMap((e=>e.values.map((e=>e.value.length))))),r=Math.max(n+4,s+o+4);for(const n of e){if(0===n.values.length)continue;const e=r-(n.name.length+4);t+=`\n== ${n.name} ${"=".repeat(e)}=\n`;for(const e of n.values){const n=o-e.value.length;t+=` [${Te(e.value)}] ${" ".repeat(n)}${je(e.name)}\n`}}return t})(s);t.info(r)},Re=["onStart","onLoad","onResolve","onEnd"],Ie=new Map,Ae=new Map,Ce=(e,t,n)=>{const s=Object.assign({},e);for(const o of Re)s[o]=async(s,r)=>{const i=Ie.get(t)||{name:t,increment:0,duration:0,events:{}};i.events[o]=i.events[o]||{name:o,values:[]};return(0,e[o])(s,(async(...e)=>{const s=Se(e[0].path,n),a=Ae.get(s)||{name:s,increment:0,duration:0,events:{}};a.events[o]=a.events[o]||{name:o,values:[]};const u=f.performance.now();try{return await r(...e)}finally{const n=f.performance.now(),r=n-u,c={start:u,end:n,duration:r,context:xe(e)};i.events[o].values.push(c),i.duration+=r,i.increment+=1,Ie.set(t,i),a.events[o].values.push(c),a.duration+=r,a.increment+=1,Ae.set(s,a)}}))};return s},Fe=(e,t,n)=>({setup:s=>{t.build.start=Date.now(),s.initialOptions.metafile=!0;const o=n.time("wrapping plugins");((e,t)=>{const n=e.initialOptions.plugins;if(n){const e=n.map((e=>({...e})));for(const s of n){if(s.name.includes(we))continue;const n=s.setup;s.setup=async o=>{const r=Ce(o,s.name,t);await n({...r,initialOptions:{...r.initialOptions,plugins:e}})}}}})(s,t.cwd),o.end(),s.onEnd((async s=>{if(!s.metafile)return void n.warn("Missing metafile, can't proceed with modules data.");const o=n.time("getting plugins results"),{plugins:r,modules:i}={plugins:Ie,modules:Ae};o.end(),e.report={timings:{tapables:r,modules:i}},await t.asyncHook("telemetryBundlerContext",e.report)}))}});class qe{constructor(e){this.started={},this.finished=[],this.cwd=e}startModule(e,t){const n=Ee(e,t,this.cwd),s=(e=>(e.loaders||[]).map((e=>e.loader||e)).map(De))(e);s.length||s.push("no-loader"),this.started[n]={module:ke(n),timings:{start:f.performance.now(),duration:0,end:0},loaders:s}}doneModule(e,t){const n=Ee(e,t,this.cwd),s=this.started[n];s&&(s.timings.end=f.performance.now(),s.timings.duration=s.timings.end-s.timings.start,this.finished.push(s),delete this.started[n])}getResults(){const e=new Map,t=new Map;for(const n of this.finished){const s=n.timings.end-n.timings.start,o=t.get(n.module)||{name:n.module,increment:0,duration:0,events:{}},r=n.loaders.join(",");o.events[r]=o.events[r]||{name:r,values:[]},o.events[r].values.push(n.timings),o.increment+=1,o.duration+=s,t.set(n.module,o);for(const t of n.loaders){const n=e.get(t)||{name:t,increment:0,duration:0,events:{}};n.increment+=1,n.duration+=s,e.set(t,n)}}return{loaders:e,modules:t}}}class Le{constructor(e){this.monitoredTaps={},this.tapables=[],this.hooks={},this.timings=new Map,this.ignoredHooks=["normalModuleLoader"],this.cwd=e}saveResult(e,t,n,s,o,r){const i=this.timings.get(t)||{name:t,duration:0,increment:0,events:{}};i.events[n]||(i.events[n]={name:n,values:[]}),i.events[n].values.push({start:o,end:r,duration:r-o,context:s,type:e}),i.duration+=r-o,i.increment+=1,this.timings.set(t,i)}getResults(){const e=this.timings;for(const[t,n]of this.timings){const s=n;s.duration=Object.values(n.events).map((e=>e.values.reduce(((e,t)=>e+t.end-t.start),0))).reduce(((e,t)=>e+t),0),e.set(t,s)}return{monitoredTaps:this.monitoredTaps,tapables:this.tapables,hooks:this.hooks,timings:e}}getPromiseTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=f.performance.now(),i=t.apply(this,o),a=()=>{this.saveResult(e,n,s,xe(o),r,f.performance.now())};return i.then(a,a),i}}getAsyncTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=f.performance.now(),i=o.pop();return t.apply(this,[...o,(...t)=>(this.saveResult(e,n,s,xe(o),r,f.performance.now()),i(...t))])}}getDefaultTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=f.performance.now(),i=t.apply(this,o);return this.saveResult(e,n,s,xe(o),r,f.performance.now()),i}}getTapPatch(e,t,n,s){switch(e){case"promise":return this.getPromiseTapPatch(e,t,n,s);case"async":return this.getAsyncTapPatch(e,t,n,s);default:return this.getDefaultTapPatch(e,t,n,s)}}newTap(e,t,n,s){return(o,r)=>{const i="string"==typeof(a=o)?a:a.name;var a;const u=`${t}-${i}`;if(this.monitoredTaps[u])return n.call(s,o,r);this.monitoredTaps[u]=!0;const c=this.getTapPatch(e,r,i,t);return n.call(s,o,c)}}replaceTaps(e,t){t.tap=this.newTap("default",e,t.tap,t),t.tapAsync=this.newTap("async",e,t.tapAsync,t),t.tapPromise=this.newTap("promise",e,t.tapPromise,t)}patchHook(e,t,n){n._fakeHook||e.includes(we)||(this.hooks[e]||(this.hooks[e]=[]),this.hooks[e].includes(t)||(this.hooks[e].push(t),this.replaceTaps(t,n)))}patchHooks(e){const t=e.constructor.name,n=Object.keys(e.hooks).filter((e=>!this.ignoredHooks.includes(e)&&!this.hooks[t]?.includes(e)));for(const s of n)this.patchHook(t,s,e.hooks[s])}checkNewHooks(){for(const e of this.tapables)this.patchHooks(e)}throughHooks(e){this.tapables.includes(e)||this.tapables.push(e),this.patchHooks(e)}}const _e=(e,t)=>async n=>{const s=t.getLogger(we);t.build.start=Date.now();const o={name:we},r=new Le(t.cwd),i=new qe(t.cwd),a=s.time("parse compiler hooks");r.throughHooks(n),a.end(),n.hooks.thisCompilation.tap(o,(e=>{const t=s.time("parse compilation hooks");r.throughHooks(e),t.end(),e.hooks.buildModule.tap(o,(t=>{i.startModule(t,e)})),e.hooks.succeedModule.tap(o,(t=>{i.doneModule(t,e)})),e.hooks.failedModule&&e.hooks.failedModule.tap(o,(t=>{i.doneModule(t,e)}))})),n.hooks.afterEmit.tapPromise(o,(async n=>{const{timings:s}=r.getResults(),{loaders:o,modules:a}=i.getResults();e.report={timings:{tapables:s,loaders:o,modules:a}},await t.asyncHook("telemetryBundlerContext",e.report)}))},He={filters:be},Ke=({options:e,context:t})=>{const n=t.getLogger(we);let s=0;const o={start:Date.now()},r=(e=>{const t=e[ye]?.endPoint||"https://app.datadoghq.com";return{disabled:!e[ye],enableTracing:!1,filters:be,output:!1,prefix:"",tags:[],...e[ye],endPoint:t.startsWith("http")?t:`https://${t}`}})(e),i=[];if(r.disabled)return i;const a={name:we,enforce:"pre",esbuild:Fe(o,t,n),webpack:_e(o,t),rspack:_e(o,t)},u=n.time("build",{start:!1}),c=r.enableTracing&&["esbuild","webpack4","webpack5","rspack"].includes(t.bundler.fullName);let p,l;const d=async()=>{t.build.end=Date.now(),t.build.duration=t.build.end-t.build.start,t.build.writeDuration=t.build.end-s;const e=new Set,i=(e=>({timestamp:Math.floor((e.timestamp||Date.now())/1e3),tags:e.tags,prefix:e.prefix,filters:e.filters}))(r),a=n.time("aggregating metrics");Me(l,i,e,o.report),a.end();const u=n.time("writing to files");await Pe({report:o.report,metrics:e},r.output,n,t.bundler.outDir),u.end();const c=n.time("outputing report");ze(t,n,o.report),c.end();const p=n.time("sending metrics to Datadog");await((e,t,n)=>{if(!t.apiKey)return void n.info("Won't send metrics to Datadog: missing API Key.");if(!e.size)return void n.info("No metrics to send.");const s=new Map;for(const t of e)s.has(t.metric)||s.set(t.metric,0),s.set(t.metric,s.get(t.metric)+1);const o=Array.from(s.entries()).sort((([e],[t])=>e.localeCompare(t))).map((([e,t])=>`${e} - ${t}`));return n.debug(`\nSending ${e.size} metrics.\nMetrics:\n - ${o.join("\n - ")}`),D({method:"POST",url:`${t.endPoint}/api/v1/series?api_key=${t.apiKey}`,getData:()=>({data:JSON.stringify({series:Array.from(e)})})}).catch((e=>{n.error(`Error sending metrics ${e}`)}))})(e,{apiKey:t.auth?.apiKey,endPoint:r.endPoint},n),p.end()},m={name:"datadog-universal-telemetry-plugin",enforce:"post",buildStart(){u.resume(),t.build.start=t.build.start||Date.now()},buildEnd(){u.end(),s=Date.now()},async telemetryBundlerContext(e){p=e,l&&await d()},async buildReport(e){l=e,!p&&c||await d()}};return r.enableTracing&&i.push(a),i.push(m),i},Be="datadog-analytics-plugin",We=({context:e})=>{const t=e.getLogger(Be);return[{name:Be,async buildStart(){"production"===e.env&&e.queue((async()=>{try{await e.sendLog({message:"Build started",context:{plugins:e.pluginNames}})}catch(e){t.debug(`Could not submit data to Datadog: ${e}`)}})())}}]},Ue="datadog-async-queue-plugin",Ge=e=>{const{context:t,stores:n}=e,s=t.getLogger(Ue),o=[];return t.queue=e=>{const t=e.catch((e=>{o.push(e.message||e.toString())}));n.queue.push(t)},[{name:Ue,asyncTrueEnd:async()=>{await Promise.all(n.queue),o.length>0&&s.error(`Error occurred while processing async queue:\n ${o.join("\n ")}`)}}]},Je=async(e,t,n)=>{const s=[],o=e.initialOptions.entryPoints,r=[],i=[];if(Array.isArray(o))for(const e of o){const t=e&&"object"==typeof e?e.in:e;r.push({path:t})}else o&&"object"==typeof o&&r.push(...Object.entries(o).map((([e,t])=>({name:e,path:t}))));const a=r.flatMap((e=>{return(t=e.path,t.includes("*")?g.glob.sync(t):[t]).map((t=>[e,t]));var t})).map((async([n,o])=>{const r=await e.resolve(o,{kind:"entry-point",resolveDir:t.cwd});r.errors.length&&i.push(...r.errors.map((e=>e.text))),r.path&&s.push({name:n.name,resolved:r.path,original:n.path})}));for(const e of i)n.error(e);return await Promise.all(a),s},Ve=(e,t)=>z(t)?$:t.startsWith(e)||i.isAbsolute(t)?t:i.resolve(e,t),Qe=(e,t)=>{const n=[...e].map((e=>Ve(t||process.cwd(),e).split(i.sep))),s=n.length?Math.min(...n.map((e=>e.length))):0,o=[];for(let e=0;e<s;e++){const t=n[0][e];if(!n.every((n=>n[e]===t)))break;o.push(t)}return o.length>0&&o.join(i.sep)||i.sep},Ye=/\.(?!.*(?:\.|\/|\\))(\w{1,})/g,Xe=/(\?|%3F|\|)+/gi,Ze=e=>{return"unknown"===e?e:e.includes("webpack/runtime")?"runtime":(t=nt(e),Ye.lastIndex=0,Ye.exec(t)?.[1]||"unknown");var t},et=["unknown","commonjsHelpers.js",`vite${i.sep}preload-helper.js`],tt=(e,t,n)=>{const s=new Set;for(const n of e){const e=nt(n);z(n)||e===t||et.includes(e)||s.add(e)}return s},nt=e=>e.split("!").pop().split(Xe).shift().replace(/^[^\w\s.,!@#$%^&*()=+~`\-/\\]+/,""),st=(e,t)=>z(t)?$:"unknown"===t?t:t.includes("webpack/runtime")?t.replace("webpack/runtime/","").replace(/ +/g,"-"):((e,t)=>{const n=t.split(i.sep),s=e.split(i.sep).filter(((e,t)=>e===n[t])).join(i.sep);return e.replace(s,"")})(t.split("!").pop(),e).split("node_modules").pop().split(Xe).shift().replace(/^((\.\.?)?[/\\])+/g,""),ot=(e,t)=>Object.fromEntries(Object.entries(e).map((([e,n])=>[Ve(t,e),n]))),rt=(e,t)=>({setup(n){const s=new Map;let o=[];const r=t.time("build report",{start:!1});n.onStart((async()=>{s.clear(),o=[],r.resume();const i=t.time("process entries");o.push(...await Je(n,e,t));for(const t of o){const n=st(e.bundler.outDir,t.resolved);t.name?s.set(n,t.name):s.set(n,n)}i.end(),r.pause()})),n.onEnd((async n=>{r.resume();const o=t.time("collecting errors and warnings"),a=e.cwd,u=e.bundler.outDir;for(const t of n.errors)e.build.errors.push(t.text);for(const t of n.warnings)e.build.warnings.push(t.text);if(o.end(),!n.metafile){const n="Missing metafile from build report.";return e.build.warnings.push(n),void t.warn(n)}const c=[],p=[],l=[],d=[],m=[],f={},g={},h=t.time("indexing metafile data"),y=ot(n.metafile.inputs,a),w=ot(n.metafile.outputs,a);h.end();const b=e=>{if(!z(e))return e;const t=y[Ve(a,e)];if(!t)return e;const n=t.imports.find((e=>!z(e.path)));return n?n.path:e},v=t.time("looping through inputs");for(const[e,t]of Object.entries(n.metafile.inputs)){if(z(e))continue;const n=Ve(a,e),s={name:st(u,e),filepath:n,dependents:new Set,dependencies:new Set,size:t.bytes,type:Ze(e)};f[n]=s,c.push(s)}v.end();const $=t.time("looping through outputs");for(const[e,o]of Object.entries(n.metafile.outputs)){const n=Ve(a,e),r=st(u,n),i=[];for(const e of Object.keys(o.inputs)){if(z(e))continue;const n=f[Ve(a,e)];n?i.push(n):t.debug(`Input ${e} not found for output ${r}`)}if(o.entryPoint&&!i.length){const e=f[Ve(a,o.entryPoint)];if(!e){t.debug(`Input ${o.entryPoint} not found for output ${r}`);continue}i.push(e)}const c={name:r,filepath:n,inputs:i,size:o.bytes,type:Ze(n)};if(g[n]=c,"map"===c.type&&d.push(c),p.push(c),!o.entryPoint)continue;const m=f[Ve(a,b(o.entryPoint))];if(m){if(!s.get(m.name))continue;const e={...c,name:s.get(m.name)||m.name,outputs:[c],size:c.size};l.push(e)}}$.end();const k=t.time("looping through sourcemaps");for(const e of d){const n=g[e.filepath.replace(/\.map$/,"")];n?e.inputs.push(n):t.debug(`Could not find output for sourcemap ${e.name}`)}k.end();const S={inputs:{report:f,meta:y},outputs:{report:g,meta:w}},E=/(<runtime>|https:|file:|data:|#)/g,D=e=>!z(e)&&!e.match(E),x=(e,n,s={})=>{if(!D(e))return s;const o=n.report[e];if(!o)return t.debug(`Could not find report's ${e}`),s;if(s[o.filepath])return s;s[o.filepath]=o;const r=n.meta[e];if(!r)return t.debug(`Could not find metafile's ${e}`),s;if(!r.imports||!r.imports.length)return s;for(const t of r.imports){const r=t.path.match(/^\.\.?\//),p=r?i.dirname(e):a,l=Ve(p,t.path);if(t.external){if(D(t.path)){const e=r?l:t.path,n=S.inputs.report[e]||{filepath:e,name:st(u,t.path),size:0,type:"external",dependencies:new Set,dependents:new Set};"dependencies"in o&&(n.dependents.add(o),o.dependencies.add(n)),"inputs"in o&&!o.inputs.includes(n)&&o.inputs.push(n),c.includes(n)||c.push(n),S.inputs.report[e]=n,s[n.filepath]=n}}else x(l,n,s)}return s},M=t.time("looping through entries");for(const e of l){const t={},n={};for(const n of e.inputs)x(n.filepath,S.inputs,t);for(const t of e.outputs)x(t.filepath,S.outputs,n);e.inputs=Object.values(t),e.outputs=Object.values(n),e.size=e.outputs.reduce(((e,t)=>e+t.size),0),m.push(e)}M.end();const P=t.time("aggregate dependencies and dependents");for(const e of c){if("external"===e.type)continue;const n=S.inputs.meta[e.filepath];if(n)for(const s of n.imports){if(!D(s.path))continue;const n=s.path.match(/^\.?\.\//),o=n?i.dirname(e.filepath):a,r=Ve(o,s.path);let u;if(s.external){const e=n?r:s.path;u=S.inputs.report[e]}else u=S.inputs.report[r];u?(e.dependencies.add(u),u.dependents.add(e)):t.debug(`Could not find input file of ${s.path} imported from ${e.name}`)}else t.debug(`Could not find metafile's ${e.name}`)}P.end(),e.build.outputs=p,e.build.inputs=c,e.build.entries=m,r.end(),await e.asyncHook("buildReport",e.build)}))}}),it=(e,t)=>{const n=t.time("module parsing",{start:!1}),s=t.time("build report",{start:!1}),o=t.time("filling entries",{start:!1}),r=t.time("filling inputs and outputs",{start:!1}),i=t.time("completing dependencies and dependents",{start:!1}),a=t.time("filling dependencies and dependents",{start:!1}),u=t.time("filling sourcemaps inputs",{start:!1}),c=new Map,p=new Map,l=new Map,d=new Map;return{buildStart(){d.clear(),c.clear(),p.clear(),l.clear()},onLog(t,n){"warn"===t&&e.build.warnings.push(n.message||n.toString())},renderError(t){t&&e.build.errors.push(t.message)},moduleParsed(e){n.resume();const t=nt(e.id),s=d.get(t)||{dependencies:new Set,dependents:new Set},o=tt(new Set([...e.dynamicallyImportedIds,...e.importedIds]),t),r=tt(new Set([...e.dynamicImporters,...e.importers]),t);for(const e of r)s.dependents.add(e);for(const e of o)s.dependencies.add(e);d.set(t,s),n.tag([`module:${t}`],{span:!0}),n.pause()},writeBundle(n,m){s.resume();const f=n.dir?Ve(e.cwd,n.dir):e.bundler.outDir,g=new Set,h=new Set,y=new Map;i.resume();for(const[e,{dependencies:t,dependents:n}]of d){for(const n of t){const t=nt(n),s=d.get(t)||{dependencies:new Set,dependents:new Set};s.dependents.has(e)||(s.dependents.add(e),d.set(t,s))}for(const t of n){const n=nt(t),s=d.get(n)||{dependencies:new Set,dependents:new Set};s.dependencies.has(e)||(s.dependencies.add(e),d.set(n,s))}}i.end(),r.resume();for(const[e,n]of Object.entries(m)){const s=Ve(f,e),o="code"in n?Buffer.byteLength(n.code,"utf8"):Buffer.byteLength(n.source,"utf8"),r=p.get(s)||{name:e,filepath:s,inputs:[],size:o,type:Ze(e)};if("map"===r.type&&h.add(r),"modules"in n)for(const[e,t]of Object.entries(n.modules)){if(nt(e)!==e)continue;const n=c.get(e)||{name:st(f,e),dependencies:new Set,dependents:new Set,filepath:e,size:t.originalLength,type:Ze(e)};r.inputs.push(n),c.set(n.filepath,n)}if("imports"in n)for(const e of n.imports){const n=nt(e);if(!d.has(n)){y.set(Ve(f,n),r);continue}if(c.has(n)){t.debug(`Input report already there for ${n} from ${r.name}.`);continue}const s=c.get(n)||{name:st(f,e),dependencies:new Set,dependents:new Set,filepath:n,size:0,type:"external"};r.inputs.push(s),c.set(s.filepath,s)}"isEntry"in n&&n.isEntry&&g.add({...r,name:n.name,size:0,outputs:[r]}),p.set(r.filepath,r)}r.end();for(const[e,n]of y){const s=p.get(e);s?n.inputs.includes(s)||n.inputs.push(s):t.debug(`Could not find the output report for ${e}.`)}a.resume();for(const[e,n]of c){const s=d.get(e);if(s){for(const e of s.dependencies){const s=c.get(e);s?n.dependencies.add(s):t.debug(`Could not find input for dependency ${st(f,e)} of ${n.name}`)}for(const e of s.dependents){const s=c.get(e);s?n.dependents.add(s):t.debug(`Could not find input for dependent ${st(f,e)} of ${n.name}`)}}else t.debug(`Could not find the import report for ${n.name}.`)}if(a.end(),h.size){u.resume();for(const e of h){const n=e.filepath.replace(/\.map$/,""),s=p.get(n);s?e.inputs.push(s):t.debug(`Could not find output for sourcemap ${e.name}`)}u.end()}const w=(e,n=new Map)=>{if(n.has(e))return n;const s=st(f,e),o=p.get(e);if(!o)return c.has(s)||t.debug(`Could not find output for ${s}`),n;n.set(e,o);const r=m[st(f,e)];if(!r)return t.debug(`Could not find asset for ${s}`),n;const i=[];"imports"in r&&i.push(...r.imports),"dynamicImports"in r&&i.push(...r.dynamicImports);for(const e of i)w(Ve(f,e),n);return n};o.resume();for(const e of g){const n=w(e.filepath);e.outputs=Array.from(n.values()),e.inputs=Array.from(new Set(e.outputs.flatMap((e=>e.inputs)))),e.size=e.outputs.reduce(((e,t)=>e+t.size),0),l.has(e.filepath)&&t.debug(`Entry "${e.name}":"${st(f,e.filepath)}" already reported.`),l.set(e.filepath,e)}o.pause(),s.pause()},async closeBundle(){e.build.inputs=Array.from(c.values()),e.build.outputs=Array.from(p.values()),e.build.entries=Array.from(l.values()),o.end(),s.end(),await e.asyncHook("buildReport",e.build)}}},at=(e,t,n)=>s=>{let o=[],r=[],i=[];const a=new Map,u=new Map,c=new Map,p=new Map,l=[],d=new Map,m=n.time("build report",{start:!1}),f=e=>!(!e||e.startsWith("webpack/runtime")||e.includes("/webpack4/buildin/")||e.startsWith("multi ")||z(e)),g=e=>e.replace(/(^external[^"]+"|"$)/g,""),h=e=>{const t=(e=>{const t=e.identifier();return{identifier:()=>t,dependencies:"dependencies"in e?[...e.dependencies]:[],blocks:"blocks"in e?[...e.blocks]:[],externalType:"externalType"in e?e.externalType:void 0,external:"external"in e?e.external:void 0}})(e),n=(e=>{const t=new Set,n=["rawRequest","resource","request","userRequest"],s=e=>{const n=nt(e);t.add(n),n.startsWith("external ")&&t.add(g(n))};s(e.identifier());for(const t of n){const n=e[t];t&&t in e&&"string"==typeof n&&s(n)}return t})(e);for(const e of n)if(p.has(e)){const n=p.get(e);n.dependencies.push(...t.dependencies||[]),n.blocks.push(...t.blocks||[])}else p.set(e,t)},y=(e,t=[])=>{if("dependencies"in e)for(const n of e.dependencies)t.push(n),y(n,t);if("blocks"in e)for(const n of e.blocks)y(n,t);return t},w=(e,t)=>{if("request"in t&&t.request){const n=nt(t.request);if(p.has(n))return p.get(n);if(e.context){const t=Ve(nt(e.context),n);if(p.has(t))return p.get(t)}}},b=e=>!(!("externalType"in e)||!e.externalType)||(!(!("external"in e)||!e.external)||!!e.identifier?.().startsWith("external "));s.hooks.thisCompilation.tap(t,(s=>{o=[],r=[],i=[],a.clear(),u.clear(),p.clear(),d.clear(),s.hooks.finishModules.tap(t,(t=>{m.resume();const s=n.time("dependency graph"),r=n.time("indexing modules");for(const e of t)h(e);r.end();const i=n.time("building inputs");for(const n of t){const t=n.identifier(),s=st(e.bundler.outDir,t),r=new Set(y(n).map((e=>{const s=w(n,e);if(!s?.identifier())return!1;const o=s.identifier();return!!f(o)&&(o!==t&&(b(s)?g(o):o))})).filter(Boolean));if(!f(t))continue;const i=d.get(t)||{dependents:new Set,dependencies:new Set};for(const e of r){const n=d.get(e)||{dependencies:new Set,dependents:new Set};n.dependents.add(t),i.dependencies.add(e),d.set(e,n)}d.set(t,i);const u=b(n)?{size:0,name:g(s),dependencies:new Set,dependents:new Set,filepath:t,type:"external"}:{size:n.size()||0,name:s,dependencies:new Set,dependents:new Set,filepath:t,type:Ze(t)};o.push(u),a.set(t,u),b(n)&&a.set(g(t),u)}i.end();const u=n.time("assigning dependencies and dependents");for(const e of o){const t=d.get(e.filepath);if(t){for(const s of t.dependencies){const t=a.get(s);t?e.dependencies.add(t):n.debug(`Could not find input of dependency ${s}`)}for(const s of t.dependents){const t=a.get(s);t?e.dependents.add(t):n.debug(`Could not find input of dependent ${s}`)}}else n.debug(`Could not find dependency report for ${e.name}`)}u.end(),s.end(),m.pause()}))})),s.hooks.afterEmit.tapPromise(t,(async t=>{m.resume();const s=t.chunks,p=t.getAssets(),d=t=>[...t.files||[],...t.auxiliaryFiles||[]].map((t=>Ve(e.bundler.outDir,t))),g=n.time("indexing chunks"),h=t.chunkGraph;for(const e of s){const t=d(e),n=(h?h?.getChunkModules(e):"getModules"in e&&"function"==typeof e.getModules?e.getModules():[]).flatMap((e=>"modules"in e&&Array.isArray(e.modules)?e.modules.map((e=>e.identifier())):e.identifier())).filter(f);for(const e of t){if("map"===Ze(e))continue;const t=c.get(e)||new Set;for(const e of n)t.add(e);c.set(e,t)}}g.end();const y=n.time("building outputs");for(const t of p){const s={size:t.source.size()||0,name:t.name,inputs:[],filepath:Ve(e.bundler.outDir,t.name),type:Ze(t.name)};if(u.set(s.filepath,s),r.push(s),"map"===s.type){l.push(s);continue}const o=c.get(s.filepath);if(o)for(const e of o){const t=a.get(e);t?s.inputs.push(t):n.debug(`Could not find input of ${e}`)}else n.debug(`Could not find modules for ${s.name}`)}y.end();const w=n.time("filling sourcemaps inputs");for(const e of l){const t=u.get(e.filepath.replace(/\.map$/,""));t?e.inputs.push(t):n.debug(`Output not found for sourcemap ${e.name}`)}w.end();const b=n.time("building entries");for(const[s,o]of t.entrypoints){const t=new Map,r=new Map;let a=0;const c=o.chunks.flatMap(d),p=o.chunks.filter((e=>h?h.getChunkEntryModulesIterable(e):"hasEntryModule"in e&&"function"==typeof e.hasEntryModule&&e.hasEntryModule())).flatMap((e=>Array.from(e.files))).filter((e=>e.includes(s)||o.name&&e.includes(o.name))).find((e=>"js"===Ze(e)));for(const e of c){const s=u.get(e);if(e&&s){if("map"!==s.type&&!t.has(s.name)){t.set(s.name,s);for(const e of s.inputs)r.has(e.filepath)||r.set(e.filepath,e);a+=s.size}}else n.debug(`Could not find output of ${JSON.stringify(e)}`)}const l={name:s,filepath:p?Ve(e.bundler.outDir,p):"unknown",size:a,inputs:Array.from(r.values()),outputs:Array.from(t.values()),type:p?Ze(p):"unknown"};i.push(l)}b.end();for(const n of t.errors)e.build.errors.push(n.message);for(const n of t.warnings)e.build.warnings.push(n.message);e.build.inputs=o,e.build.outputs=r,e.build.entries=i,m.end(),await e.asyncHook("buildReport",e.build)}))},ut="datadog-build-report-plugin",ct=e=>{const{context:t}=e,n=t.getLogger(ut);return[{name:ut,enforce:"post",esbuild:rt(t,n),rspack:at(t,ut,n),webpack:at(t,ut,n),vite:it(t,n),rollup:it(t,n)}]},pt="datadog-bundler-report-plugin",lt=(e,t)=>t?i.isAbsolute(t)?t:i.resolve(e,t):"",dt=e=>{if(!e)return[];return(Array.isArray(e)?e:[e]).map((e=>e.dir?e.dir:e.file?i.dirname(e.file):void 0)).filter(Boolean)},mt=e=>t=>{e.bundler.rawConfig=t.options,t.options.output?.path&&(e.bundler.outDir=lt(process.cwd(),t.options.output.path)),e.hook("bundlerReport",e.bundler),t.options.context&&(e.cwd=t.options.context),e.hook("cwd",e.cwd)},ft=e=>({configResolved(t){e.bundler.rawConfig=t;let n=t.build?.outDir??"dist";const s=t.build?.rollupOptions?.output,o=dt(s);e.cwd=t.root??process.cwd(),s&&o.length&&(n=Qe(o,process.cwd())),e.bundler.outDir=lt(e.cwd,n),e.hook("cwd",e.cwd),e.hook("bundlerReport",e.bundler)}}),gt=e=>{const{context:t}=e,n=t.getLogger(pt);return[{name:pt,enforce:"pre",esbuild:{setup(e){t.bundler.rawConfig=e.initialOptions,e.initialOptions.absWorkingDir&&(t.cwd=e.initialOptions.absWorkingDir),e.initialOptions.outdir&&(t.bundler.outDir=lt(t.cwd,e.initialOptions.outdir)),e.initialOptions.outfile&&(t.bundler.outDir=lt(t.cwd,i.dirname(e.initialOptions.outfile))),t.hook("cwd",t.cwd),t.hook("bundlerReport",t.bundler),e.initialOptions.metafile=!0}},webpack:mt(t),rspack:mt(t),vite:ft(t),rollup:{options(e){let n;if("output"in e){const t=dt(e.output);n=Qe(t,process.cwd())}const s=(e=>{const t=new Set;if(e.input){const n=Array.isArray(e.input)?e.input:"object"==typeof e.input?Object.values(e.input):[e.input];for(const e of n){if("string"!=typeof e)throw new Error("Invalid input type");t.add(i.dirname(e))}}return Array.from(t)})(e);if(n){t.bundler.outDir=Ve(process.cwd(),n);const e=Qe([n,...s],process.cwd());t.cwd=e===i.sep?process.cwd():e}else t.cwd=Qe(s,process.cwd()),t.bundler.outDir=i.resolve(process.cwd(),"dist");t.hook("cwd",t.cwd)},buildStart(e){t.bundler.rawConfig=e},renderStart(e){t.bundler.rawConfig.outputs=t.bundler.rawConfig.outputs||[],t.bundler.rawConfig.outputs.push(e),t.hook("bundlerReport",t.bundler);const s=dt(e);Qe(s,process.cwd()).startsWith(t.bundler.outDir)||n.info("The output directory has been changed by a plugin and may introduce some inconsistencies in the build report.")}}}]},ht="datadog-custom-hooks-plugin",yt=e=>{const{context:t}=e,n=t.getLogger(ht),s=e=>(s,...o)=>{const r=n.time(`execution | ${s}`,{tags:["type:custom-hook",`hook:${s}`]}),i=[],a=[];for(const n of t.plugins){if(!(s in n))continue;const t=n[s];if("function"==typeof t)try{const r=t(...o);r instanceof Promise&&(e||i.push(`Plugin "${n.name}" returned a promise on the non async hook "${s}".`),a.push(r))}catch(e){i.push(`Plugin "${n.name}" errored on hook "${s}". [${e}]`)}else i.push(`Plugin "${n.name}" has an invalid hook type for "${s}". [${typeof t}]`)}if(i.length>0){for(const e of i)n.error(e);throw new Error("Some plugins errored during the hook execution.")}return Promise.all(a).finally((()=>r.end()))};return t.hook=s(!1),t.asyncHook=s(!0),[{name:ht,enforce:"pre"}]};class wt{constructor(e){this.trackedFilenames=new Map;for(const t of e){const e=this.getFilename(t),n=this.trackedFilenames.get(e);n?n.push(t):this.trackedFilenames.set(e,new Array(t))}}displaySource(e){return e.length<=40?e:`[...]${e.slice(-35)}`}matchSourcemap(e,t){const n=(s=e,r.readFileSync(s,{encoding:"utf-8"}));var s;const o=JSON.parse(n);if(!o.sources)return void t("Missing 'sources' field in sourcemap.");const i=o.sources;if(0===i.length)return void t("Empty 'sources' field in sourcemap.");const a=this.matchSources(i);if(0!==a.length)return a;t(`${i.map(this.displaySource).join(", ")} not in the tracked files.`)}matchSources(e){let t=[];const n=new Set;for(const s of e){const e=this.getFilename(s);if(n.has(e))continue;n.add(e);const o=this.trackedFilenames.get(e);o&&(t=t.concat(o))}return t}rawTrackedFilesList(){let e=[];return this.trackedFilenames.forEach((t=>{e=e.concat(t)})),e}getFilename(e){let t=e.lastIndexOf("/");-1===t?t=0:t++;let n=e.lastIndexOf("?");return(-1===n||n<=t)&&(n=e.length),e.substring(t,n)}}const bt=async e=>{const t=await e.getRemotes(!0);if(0===t.length)throw new Error("No git remotes available");const n=await vt(e);for(const e of t)if(e.name===n)return A(e.refs.push);return A(t[0].refs.push)},vt=async e=>{try{return(await e.getConfig("clone.defaultRemoteName"))?.value??"origin"}catch(e){return"origin"}},$t=async e=>e.revparse("HEAD"),kt=async e=>(await e.raw("ls-files")).split(/\r\n|\r|\n/),St=async e=>e.branch(),Et=async e=>e.show(["-s","--format=%s"]),Dt=async e=>e.show(["-s","--format=%an,%ae,%aI,%cn,%ce,%cI"]),xt="datadog-git-plugin",Mt=e=>{const{options:t,context:n}=e,s=n.getLogger(xt);return[{name:xt,enforce:"pre",async buildStart(){if((e=>!!e.errorTracking?.sourcemaps&&!0!==e.errorTracking?.sourcemaps.disableGit&&!0!==e.disableGit)(t))try{const e=s.time("get git information"),t=((e,t)=>{let n,s=Ve(process.cwd(),e);for(;!n;){const e=i.resolve(s,t);if(T(e)&&(n=e),s=s.split(i.sep).slice(0,-1).join(i.sep),[i.sep,""].includes(s))break}return n})(n.cwd,".git");if(!t)return void s.warn("No .git directory found, skipping git plugin.");const o=await(async e=>{const t=[$t(e),St(e),Et(e),Dt(e),kt(e),bt(e)],[n,s,o,r,i,a]=await Promise.all(t),[u,c,p,l,d,m]=r.split(",").map((e=>e.trim()));return{commit:{author:{name:u,email:c,date:p},committer:{name:l,email:d,date:m},message:o.trim(),hash:n},hash:n,branch:s.current,remote:a.trim(),trackedFilesMatcher:new wt(i)}})(await(async e=>{const t={baseDir:e||process.cwd(),binary:"git",maxConcurrentProcesses:3};try{const e=h.simpleGit(t),n=await e.revparse("--show-toplevel");t.baseDir=n}catch{}return h.simpleGit(t)})(i.dirname(t)));n.git=o,e.end(),await n.asyncHook("git",n.git)}catch(e){s.error(`Could not get git information: ${e.message}`)}}}]},Pt="datadog-injection-plugin",Tt=/^https?:\/\//,jt=async(e,t=process.cwd())=>(e=>o.readFile(e,{encoding:"utf-8"}))(Ve(t,e)),Ot=async(e,t,n=process.cwd())=>{let s;const o=await(async e=>"function"==typeof e.value?e.value():e.value)(e);try{if("file"===e.type)s=o.match(Tt)?await(async(e,t=5e3)=>{let n;return Promise.race([D({retries:2,minTimeout:100,url:e}).finally((()=>{t&&clearTimeout(n)})),new Promise(((e,s)=>{n=setTimeout((()=>{s(new Error("Timeout"))}),t)}))])})(o):await jt(o,n);else{if("code"!==e.type)throw new Error(`Invalid item type "${e.type}", only accepts "code" or "file".`);s=o}}catch(r){const i=`${e.type} - ${I(o)}`;e.fallback?(t.info(`Fallback for "${i}": ${r.toString()}`),s=await Ot(e.fallback,t,n)):t.warn(`Failed "${i}": ${r.toString()}`)}return s},Nt=e=>{if(0===e.size)return"";return`// begin injection by Datadog build plugins\n${Array.from(e.values()).map((e=>`(() => {${e}})();`)).join("\n\n")}\n// end injection by Datadog build plugins`},zt=async(e,t,n,s=process.cwd())=>{const o=await(async(e,t,n=process.cwd())=>{const s=new Map;for(const[o,r]of e.entries()){const e=await Ot(r,t,n);e&&s.set(o,{value:e,position:r.position||ue.BEFORE})}return s})(t,e,s);for(const[e,t]of o.entries())n[t.position].set(e,t.value)},Rt=r.promises,It=(e,t,n)=>({setup(s){const{onStart:o,onResolve:a,onLoad:u,onEnd:c,esbuild:p,initialOptions:l}=s,d=[],m=`${t.bundler.fullName}.${ue.MIDDLE}.${$}.js`,f=r.realpathSync(y.tmpdir()),g=i.resolve(f,m),h=new RegExp(`${m}$`),w=l.inject;l.inject=w?[...w]:[],l.inject.push(g),o((async()=>{d.push(...await Je(s,t,e)),s.initialOptions.inject=w;try{await M(g,"")}catch(t){e.error(`Could not create the files: ${t.message}`)}})),a({filter:h},(async e=>({path:e.path,namespace:Pt}))),u({filter:h,namespace:Pt},(async()=>({contents:Nt(n[ue.MIDDLE])||" ",resolveDir:t.cwd,loader:"js"}))),c((async s=>{if(!s.metafile)return void e.warn("Missing metafile from build result.");const o=Nt(n[ue.BEFORE]),r=Nt(n[ue.AFTER]);if(!o&&!r)return;const i=Object.entries(s.metafile.outputs).map((([e,n])=>{const s=n.entryPoint;if(!s)return;return d.find((e=>e.resolved.endsWith(s)))?Ve(t.cwd,e):void 0})).filter(Boolean).map((async t=>{try{const e=await Rt.readFile(t,"utf-8"),n=await p.transform(e,{loader:"default",banner:o,footer:r});await Rt.writeFile(t,n.code)}catch(n){if(!(e=>e instanceof Error&&"code"in e)(n)||"ENOENT"!==n.code)throw n;e.warn(`Could not inject content in ${t}: ${n}`)}}));await Promise.all(i)}))}}),At=$,Ct="?inject-proxy",Ft=e=>({banner:t=>t.isEntry?Nt(e[ue.BEFORE]):"",async resolveId(t,n,s){if(z(t))return{id:t,moduleSideEffects:!0};if(s.isEntry&&Nt(e[ue.MIDDLE])){const e=await this.resolve(t,n,s);if(!e||e.external)return e;return(await this.load(e)).moduleSideEffects=!0,`${e.id}${Ct}`}return null},load(t){if(z(t))return Nt(e[ue.MIDDLE]);if(t.endsWith(Ct)){const e=t.slice(0,-13),n=this.getModuleInfo(e);let s=`import ${JSON.stringify(At)};\nexport * from ${JSON.stringify(e)};`;return n?.hasDefaultExport&&(s+=`export { default } from ${JSON.stringify(e)};`),s}return null},footer:t=>t.isEntry?Nt(e[ue.AFTER]):""}),qt=(e,t,n,s,o)=>a=>{const u=new WeakMap,c=(e=>{if(!e?.sources?.ConcatSource)return w.createRequire(require.resolve("webpack"))("webpack-sources").ConcatSource;return e.sources.ConcatSource})(e),p=n.bundler.fullName,l=i.resolve(n.bundler.outDir,`${p}.${ue.MIDDLE}.${$}.js`);P(l,"");const d=()=>{var e;e=l,r.rmSync(e,{force:!0,maxRetries:3,recursive:!0})};a.hooks.shutdown?a.hooks.shutdown.tap(Pt,d):(a.hooks.done.tap(Pt,d),a.hooks.failed.tap(Pt,d));a.hooks.beforeRun.tapPromise(Pt,(async()=>{await zt(t,s,o,n.cwd)})),a.hooks.compilation.tap(Pt,(t=>{const n=()=>{const e=Nt(o[ue.BEFORE]),n=Nt(o[ue.AFTER]);for(const s of t.chunks)if(s.canBeInitial())for(const o of s.files)t.updateAsset(o,(t=>{const s=u.get(t);if(!s||s.banner!==e||s.footer!==n){const s=new c(e,"\n",t,"\n",n);return u.set(t,{source:s,banner:e,footer:n}),s}return s.source}))};if(t.hooks.processAssets){const s=e.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS;t.hooks.processAssets.tap({name:Pt,stage:s},n)}else t.hooks.optimizeChunkAssets.tap({name:Pt},n)}));const m=(e=>{const s="webpack4"===n.bundler.fullName?l:{import:[l]},o=e=>{for(const[n,s]of Object.entries(e))"object"==typeof s?(s.import=s.import||[],s.import.unshift(l)):"string"==typeof s?e[n]=[l,s]:Array.isArray(s)?s.unshift(l):t.error("Invalid entry type: "+typeof s)};return e?"function"==typeof e?async()=>{const t=await e();return o(t),t}:"object"!=typeof e?"string"==typeof e?[s,e]:(t.error("Invalid entry type: "+typeof e),e):(o(e),e):{ddHelper:s}})(a.options.entry);a.options.entry=m},Lt=e=>{const{bundler:t,context:n}=e,s=n.getLogger(Pt),o=new Map,r={[ue.BEFORE]:new Map,[ue.MIDDLE]:new Map,[ue.AFTER]:new Map};n.inject=e=>{o.set(`${Date.now()}.${performance.now()}.${++C}`,e)};const i={name:Pt,enforce:"post",esbuild:It(s,n,r),webpack:qt(t,s,n,o,r),rspack:qt(t,s,n,o,r),rollup:Ft(r),vite:{...Ft(r),enforce:"pre"}};var a;return a=n.bundler.fullName,["rspack","webpack4","webpack5","webpack"].includes(a)?(i.loadInclude=e=>!!z(e)||null,i.load=e=>z(e)?{code:Nt(r[ue.MIDDLE])}:null):i.buildStart=async()=>{await zt(s,o,r,n.cwd)},[i]},_t="datadog-true-end-plugin",Ht=e=>{const{context:t}=e,n=async()=>{await t.asyncHook("asyncTrueEnd")},s=()=>{t.hook("syncTrueEnd")},o=async()=>{s(),await n()},r=e=>{e.hooks.shutdown?e.hooks.shutdown.tapPromise(_t,o):(e.hooks.done.tapPromise(_t,o),e.hooks.failed.tap(_t,s))},i={async writeBundle(){},async closeBundle(){await o()}};return[{name:_t,enforce:"post",webpack:r,esbuild:{setup(e){e.onEnd((async()=>{await n()})),e.onDispose((()=>{s()}))}},vite:i,rollup:i,rspack:r}]},Kt={[ye]:He};var Bt="2.6.4";const Wt=(({bundler:n,version:s})=>{const o=Date.now();return e.createUnplugin(((e,r)=>{const i=((e={})=>({auth:{},disableGit:!1,logLevel:"warn",metadata:{},...e}))(e);"esbuild"===r.framework&&(r.esbuildHostName=S);const a=process.env.BUILD_PLUGINS_ENV||"production",u=k.includes(a)?a:"development",c=n.rspackVersion||n.version||n.VERSION,p=r.framework,l="webpack"===p?c.split(".")[0]:"",d={bundler:{name:p,fullName:`${p}${l}`,variant:l,version:c},env:u,metadata:i.metadata||{},packageName:`@datadog/${p}-plugin`,version:s},m={errors:[],logs:[],queue:[],timings:[],warnings:[]},f=(({start:e,options:t,data:n,stores:s})=>{const o=process.cwd(),r={errors:s.errors,warnings:s.warnings,logs:s.logs,metadata:n.metadata,timings:s.timings,bundler:n.bundler};return{auth:t.auth,pluginNames:[],bundler:{...r.bundler,outDir:o},build:r,cwd:o,env:n.env,getLogger:H(n,s,t.logLevel),asyncHook:()=>{throw new Error("AsyncHook function called before it was initialized.")},hook:()=>{throw new Error("Hook function called before it was initialized.")},inject:()=>{throw new Error("Inject function called before it was initialized.")},plugins:[],queue:()=>{throw new Error("Queue function called before it was initialized.")},sendLog:x(n),start:e,version:n.version}})({start:o,options:i,data:d,stores:m}),g=f.getLogger("factory").time("Plugins initialization",{start:o});f.pluginNames.push(S);const h=[];h.push(["analytics",We],["async-queue",Ge],["build-report",ct],["bundler-report",gt],["custom-hooks",yt],["git",Mt],["injection",Lt],["true-end",Ht]),i.customPlugins&&h.push(["custom",i.customPlugins]),h.push(["error-tracking",ae],["rum",he],["telemetry",Ke]);for(const[e,t]of h)f.plugins.push(...W(f,t,e)({bundler:n,context:f,options:i,data:d,stores:m}));f.pluginNames.push(...f.plugins.map((e=>e.name)));const y=new Set(f.pluginNames.filter((e=>f.pluginNames.filter((t=>t===e)).length>1)));if(y.size>0)throw new Error(`Duplicate plugin names: ${t.bold.red(Array.from(y).join(", "))}`);return f.hook("init",f),g.end(),f.plugins}))})({bundler:v,version:Bt}).vite,Ut=Bt,Gt=Kt;exports.datadogVitePlugin=Wt,exports.helpers=Gt,exports.version=Ut;
1
+ "use strict";var e=require("unplugin"),t=require("chalk"),n=require("async-retry"),s=require("outdent"),o=require("path"),r=require("buffer"),i=require("fs/promises"),a=require("fs"),u=require("stream"),p=require("p-queue"),c=require("zlib"),l=require("pretty-bytes"),d=require("perf_hooks"),m=require("@datadog/js-instrumentation-wasm"),f=require("glob"),g=require("simple-git"),h=require("os");function y(e){var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var s=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,s.get?s:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var b=y(require("vite"));const w=e=>process.env[`DATADOG_${e}`]||process.env[`DD_${e}`],v="__datadog-helper-file",$=new RegExp(v),k=["development","production","test"],S="datadog-build-plugins",E=[400,403,413],D=e=>{const{auth:t,url:s,method:o="GET",getData:r,type:i="text"}=e,a={retries:0===e.retries?0:e.retries||5,onRetry:e.onRetry,maxTimeout:e.maxTimeout,minTimeout:e.minTimeout};return n((async(e,n)=>{let a;try{const e={method:o,duplex:"half"};let n={"X-Datadog-Origin":"build-plugins"};if(t?.apiKey&&(n["DD-API-KEY"]=t.apiKey),t?.appKey&&(n["DD-APPLICATION-KEY"]=t.appKey),"function"==typeof r){const{data:t,headers:s}=await r();e.body=t,n={...n,...s}}a=await fetch(s,{...e,headers:n})}catch(t){return e(t),{}}if(!a.ok){const t=`HTTP ${a.status} ${a.statusText}`;if(E.includes(a.status))return e(new Error(t)),{};throw new Error(t)}try{let e;return e="json"===i?await a.json():await a.text(),e}catch(t){return e(t),{}}}),a)},x=e=>({message:t,context:n})=>D({retries:2,minTimeout:100,url:"https://browser-http-intake.logs.datadoghq.com/v1/input/pub44d5f4eb86e1392037b7501f7adc540e",method:"POST",type:"json",getData:async()=>{const s={ddsource:e.packageName||S,message:t,service:"build-plugins",team:"language-foundations",env:e.env,version:e.version,bundler:{name:e.bundler.name,version:e.bundler.version},metadata:e.metadata,...n};return{data:JSON.stringify(s),headers:{"Content-Type":"application/json"}}}}),R=e=>e.replace(/^@dd\/(datadog-|internal-)?|^datadog-|-plugin$/g,""),P=e=>e.includes(v),M=e=>{const t={bundler:e.bundler,errors:e.errors,metadata:e.metadata,warnings:e.warnings,logs:e.logs,timings:e.timings,start:e.start,end:e.end,duration:e.duration,writeDuration:e.writeDuration,entries:[],inputs:[],outputs:[]};for(const n of e.entries||[]){const e={...n,inputs:[],outputs:[]};n.inputs&&(e.inputs=n.inputs.map((e=>e.filepath))),n.outputs&&(e.outputs=n.outputs.map((e=>e.filepath))),t.entries.push(e)}for(const n of e.inputs||[]){const e={...n,dependencies:[],dependents:[]};if(n.dependencies)for(const t of n.dependencies)e.dependencies.push(t.filepath);if(n.dependents)for(const t of n.dependents)e.dependents.push(t.filepath);t.inputs.push(e)}for(const n of e.outputs||[]){const e={...n,inputs:[]};n.inputs&&(e.inputs=n.inputs.map((e=>e.filepath))),t.outputs.push(e)}return t},T=e=>{const t=!!e.errorTracking?.sourcemaps,n=e.enableGit??!0;return t&&n},j=e=>{const t=Math.floor(e/1e3/60/60/24),n=new Date(e-24*t*60*60*1e3),s=n.getUTCHours(),o=n.getUTCMinutes(),r=n.getUTCSeconds(),i=n.getUTCMilliseconds(),a=`${t?`${t}d `:""}${s?`${s}h `:""}${o?`${o}m `:""}${r?`${r}s`:""}`.trim();return`${a}${!a||i?` ${i}ms`:""}`.trim()},O=(e,t=60,n="[...]")=>{if(e.length<=t)return e;const s=Math.max(4,t-n.length),o=Math.min(10,Math.floor(s/2)),r=s-o;return`${e.slice(0,o)}${n}${e.slice(-r)}`},z=(e="")=>{try{if(!e||e.startsWith("git@"))return e;const t=new URL(e),n="/"===t.pathname?"":t.pathname;return`${t.protocol?`${t.protocol}//`:""}${t.host}${n}`}catch{return e}};let N=0;const A={debug:0,info:1,warn:2,error:3,none:4},I=e=>e.split(">").map(R).join(">"),C=(e,n,s,o)=>{const r=I(e);return(i,a="debug",{forward:u}={})=>{let p=t.dim,c=console.log;"error"===a?(p=t.red,c=console.error):"warn"===a?(p=t.yellow,c=console.warn):"info"===a&&(p=t.cyan,c=console.log);const l=`[${n.metadata?.name?`${n.metadata.name}|`:""}${a}|${n.bundler.name}|${r}]`,d="string"==typeof i?i:JSON.stringify(i,null,2);if(s.logs.push({bundler:n.bundler.name,pluginName:e,type:a,message:d,time:Date.now()}),"error"===a&&s.errors.push(d),"warn"===a&&s.warnings.push(d),u){const t=async()=>{try{const t=x(n);await t({message:d,context:{plugin:e,status:a}})}catch(t){C(e,n,s,o)(`Error forwarding log: ${t}`,"debug")}};s.queue.push(t())}A[a]>=A[o]&&c(`${p(l)} ${d}`)}},F=(e,n,s)=>(o,r={})=>{const{level:i="debug",start:a=!0,log:u=!0,tags:p=[]}=r,c={pluginName:e,label:o,spans:[],tags:[...p,`plugin:${e}`,`level:${i}`],logLevel:i,total:0};n.push(c);const l=()=>c.spans.filter((e=>!e.end)),d=n=>{l().length||(!c.spans.length&&u&&s(t.dim(`[${t.cyan(o)}] : start`),"debug"),c.spans.push({start:n||Date.now(),tags:[`plugin:${e}`]}))},m=(e,n=!0)=>{const r=l();if(r?.length){r.length>1&&s(`Timer ${t.cyan(o)} has more than one ongoing span.`,"debug");for(const t of r)t.end=e||Date.now()}else n&&s(`Timer ${t.cyan(o)} cannot be paused, no ongoing span.`,"debug")};if(a){let e;"number"==typeof a&&(e=a),d(e)}return{timer:c,resume:d,end:e=>{m(e,!1);const n=c.spans.reduce(((e,t)=>e+(t.end-t.start)),0);c.total=n,u&&s(`[${t.cyan(o)}] : ${t.cyan(j(n))}`,i)},pause:m,tag:(e,t={})=>{const{span:n=!1}=t;if(n){const t=l();for(const n of t)n.tags.push(...e)}else c.tags.push(...e)}}},L=(e,t,n="warn")=>s=>{const o=C(s,e,t,n);return{getLogger:o=>L(e,t,n)(`${I(s)}>${o}`),time:F(s,t.timings,o),error:(e,t)=>o(e,"error",t),warn:(e,t)=>o(e,"warn",t),info:(e,t)=>o(e,"info",t),debug:(e,t)=>o(e,"debug",t)}},_=["buildEnd","buildStart","load","resolveId","transform","watchChange","writeBundle","buildRoot","init","buildReport","bundlerReport","git"],q=(e,t,n,s)=>{const o=n=>function(...o){const r=s.time(`${e} | ${t}`,{log:!1,tags:["type:hook",`hook:${t}`]}),i=n.apply(this,o);return i instanceof Promise?i.finally((()=>{r.end()})):(r.end(),i)};return"object"==typeof n&&null!==n&&"handler"in n?{...n,handler:o(n.handler)}:o(n)},K=(e,t,n)=>{const s=e.getLogger(S);return e=>{const o=s.time(`hook | init ${n}`,{log:!1}),r=t(e).map((e=>((e,t)=>{const n={...e},s=R(e.name);for(const o of _){const r=e[o];r&&(n[o]=q(s,o,r,t))}return n})(e,s))),i=r.map((e=>`plugin:${e.name}`));return o.tag(i),o.end(),r}},H="errorTracking",B="datadog-error-tracking-plugin",W=(e,n,s)=>{if(".map"!==o.extname(s))throw new Error(`The file ${t.green.bold(s)} is not a sourcemap.`);const r=s.replace(/\.map$/,""),i=o.relative(n,r),a=((e,t)=>{if(e.startsWith("/"))return o.join(e,t);try{const n=e.replace(/\/*$/,"/"),s=new URL(n),o=t.replace(/^[\\/]*/,"");return new URL(o,s).href}catch{return`${e}${t}`}})(e,i);return{minifiedFilePath:r,minifiedUrl:a,relativePath:i}},U=async(e,t)=>{await(async e=>i.mkdir(e,{recursive:!0}))(o.dirname(e)),await i.writeFile(e,t,{encoding:"utf-8"})},G=(e,t)=>{var n;n=o.dirname(e),a.mkdirSync(n,{recursive:!0}),a.writeFileSync(e,t,{encoding:"utf-8"})},J=e=>{try{return a.existsSync(e)}catch(e){if("ENOENT"===e.code)return!1;throw e}},V=async(e,t)=>{if("function"==typeof a.openAsBlob){const n=await a.openAsBlob(e,{type:t.contentType});return new r.File([n],t.filename)}{const n=u.Readable.toWeb(a.createReadStream(e)),s=await new Response(n).blob();return new r.File([s],t.filename,{type:t.contentType})}},Y=async e=>{const t={empty:!1,exists:!0};try{const{size:n}=await i.stat(e);0===n&&(t.empty=!0)}catch(e){if("ENOENT"!==e.code)throw e;t.exists=!1}return t},Q=/[/]+|[\\]+/g,X=/^[/]+|^[\\]+|[/]+$|[\\]+$/g,Z=(e,t)=>{const n=e.replace(X,"").split(Q),s=t.replace(X,"").split(Q),o=n.join("/");let r="";for(let e=0;e<s.length;e+=1){const t=s.slice(-e).join("/");o.startsWith(t)&&(r=t)}return r},ee=async(e,t,n,s)=>{const r=await(async(e,t)=>{const[n,s]=await Promise.all([Y(e.minifiedFilePath),Y(e.sourcemapFilePath)]);return{file:n,sourcemap:s,repeatedPrefix:Z(e.relativePath,t)}})(e,n),i=[],a=[],u=new Map([["event",{type:"string",options:{contentType:"application/json",filename:"event"},value:JSON.stringify({...t,minified_url:e.minifiedUrl})}],["source_map",{type:"file",path:e.sourcemapFilePath,options:{filename:"source_map",contentType:"application/json"}}],["minified_file",{type:"file",path:e.minifiedFilePath,options:{filename:"minified_file",contentType:"application/javascript"}}]]);if(s)try{u.set("repository",{type:"string",options:{contentType:"application/json",filename:"repository"},value:JSON.stringify({data:[{files:s.trackedFilesMatcher.matchSourcemap(e.sourcemapFilePath,(t=>{a.push(`${o.basename(e.sourcemapFilePath)}: "${t}"`)})),hash:s.hash,repository_url:s.remote}],version:1})})}catch(t){a.push(`Could not attach git data for sourcemap ${e.sourcemapFilePath}: ${t.message}`)}return r.file.empty&&i.push(`Minified file is empty: ${e.minifiedFilePath}`),r.file.exists||i.push(`Minified file not found: ${e.minifiedFilePath}`),r.sourcemap.empty&&i.push(`Sourcemap file is empty: ${e.sourcemapFilePath}`),r.sourcemap.exists||i.push(`Sourcemap file not found: ${e.sourcemapFilePath}`),r.repeatedPrefix&&a.push(`The minified file path contains a repeated pattern with the minified path prefix: ${r.repeatedPrefix}`),{content:u,errors:i,warnings:a}},te=t.green.bold,ne=t.yellow.bold,se=t.red.bold,oe=(e,t={})=>async()=>{const n=new FormData,s=c.createGzip();for(const[t,s]of e.content){const e="file"===s.type?await V(s.path,s.options):new Blob([s.value],{type:s.options.contentType});n.append(t,e,s.options.filename)}const o=new Request("fake://url",{method:"POST",body:n});return{data:u.Readable.fromWeb(o.body).pipe(s),headers:{"Content-Encoding":"gzip",...t,...Object.fromEntries(o.headers.entries())}}},re=async(e,t,n,s)=>{const o=Date.now(),r=t.minifiedPathPrefix,i={git_repository_url:n.git?.remote,git_commit_sha:n.git?.hash,plugin_version:n.version,project_path:n.outDir,service:t.service,type:"js_sourcemap",version:t.releaseVersion},a=await Promise.all(e.map((e=>ee(e,i,r,n.git)))),u=a.map((e=>e.errors)).flat(),c=a.map((e=>e.warnings)).flat();if(c.length>0&&s.warn(`Warnings while preparing payloads:\n - ${c.join("\n - ")}`),u.length>0){const e=`Failed to prepare payloads, aborting upload :\n - ${u.join("\n - ")}`;if(s.error(e),!0===t.bailOnError)throw new Error(e);return}const{errors:l,warnings:d}=await(async(e,t,n,s)=>{const o=[],r=[];if(!n.apiKey)return o.push({error:new Error("No authentication token provided")}),{errors:o,warnings:r};if(0===e.length)return r.push("No sourcemaps to upload"),{errors:o,warnings:r};const i=new(p.default?p.default:p)({concurrency:t.maxConcurrency}),a={"DD-EVP-ORIGIN":`${n.bundlerName}-build-plugin_sourcemaps`,"DD-EVP-ORIGIN-VERSION":n.version},u=[];for(const p of e){const e={sourcemap:p.content.get("source_map")?.path.replace(n.outDir,"."),file:p.content.get("minified_file")?.path.replace(n.outDir,".")};s.debug(`Queuing ${te(e.sourcemap)} | ${te(e.file)}`),u.push(i.add((async()=>{try{await D({auth:{apiKey:n.apiKey},url:(i=n.site,process.env.DATADOG_SOURCEMAP_INTAKE_URL||`https://sourcemap-intake.${i}/api/v2/srcmap`),method:"POST",getData:oe(p,a),onRetry:(t,n)=>{const o=`Failed to upload ${ne(e.sourcemap)} | ${ne(e.file)}:\n ${t.message}\nRetrying ${n}/5`;r.push(o),s.debug(o)}}),s.debug(`Sent ${te(e.sourcemap)} | ${te(e.file)}`)}catch(n){if(o.push({metadata:e,error:n}),!0===t.bailOnError)throw n}var i})))}return await Promise.all(u),await i.onIdle(),{warnings:r,errors:o}})(a,t,{apiKey:n.apiKey,bundlerName:n.bundlerName,version:n.version,outDir:n.outDir,site:n.site},s);if(s.info(`Done uploading ${te(e.length.toString())} sourcemaps in ${te(j(Date.now()-o))}.`),l.length>0){const e=`Failed to upload some sourcemaps:\n${` - ${l.map((({metadata:e,error:t})=>e?`${se(e.file)} | ${se(e.sourcemap)} : ${t.message}`:t.message)).join("\n - ")}`}`;if(s.error(e),!0===t.bailOnError)throw new Error(e)}d.length>0&&s.warn(`Warnings while uploading sourcemaps:\n - ${d.join("\n - ")}`)},ie=async(e,n,o)=>{const r=t.green.bold,i=Object.entries(e.sourcemaps).map((([e,t])=>` - ${e}: ${r(t.toString())}`)).join("\n"),a=o.time("get sourcemaps files"),u=((e,t)=>{if(!t.outputs||0===t.outputs.length)throw new Error("No output files found.");return t.outputs.filter((e=>e.filepath.endsWith(".map"))).map((e=>e.filepath)).map((n=>({...W(e.minifiedPathPrefix,t.outDir,n),sourcemapFilePath:n,minifiedPathPrefix:e.minifiedPathPrefix})))})(e.sourcemaps,{outDir:n.outDir,outputs:n.outputs});a.end();const p=s.outdent`
2
+ Uploading ${r(u.length.toString())} sourcemaps with configuration:
3
+ ${i}
4
+ `;o.info(p);const c=o.time("send sourcemaps");await re(u,e.sourcemaps,{apiKey:n.apiKey,bundlerName:n.bundlerName,git:n.git,outDir:n.outDir,site:n.site,version:n.version},o),c.end()},ae=e=>{const n=t.bold.red,s=e[H]||{},o={errors:[]};if(s.sourcemaps){s.sourcemaps.releaseVersion||o.errors.push(`${n("sourcemaps.releaseVersion")} is required.`),s.sourcemaps.service||o.errors.push(`${n("sourcemaps.service")} is required.`),s.sourcemaps.minifiedPathPrefix||o.errors.push(`${n("sourcemaps.minifiedPathPrefix")} is required.`),s.sourcemaps.minifiedPathPrefix&&((e=>{let t;try{t=new URL(e).host}catch{}return!(!t&&!e.startsWith("/"))})(s.sourcemaps.minifiedPathPrefix)||o.errors.push(`${n("sourcemaps.minifiedPathPrefix")} must be a valid URL or start with '/'.`));const e={bailOnError:!1,dryRun:!1,maxConcurrency:20,...s.sourcemaps};o.config=e}return o},ue=({options:e,context:t})=>{const n=t.getLogger(B),s=n.time("validate options"),o=((e,t)=>{const n=[],s=ae(e);if(n.push(...s.errors),n.length)throw t.error(`\n - ${n.join("\n - ")}`),new Error(`Invalid configuration for ${B}.`);const o={enable:!!e[H],...e[H],sourcemaps:void 0};return s.config&&(o.sourcemaps=s.config),o})(e,n);if(s.end(),!o.enable)return[];let r,i;const a=async()=>{if(!o.sourcemaps)return;const e=n.time("sourcemaps process");await ie(o,{apiKey:t.auth.apiKey,bundlerName:t.bundler.name,git:r,outDir:t.bundler.outDir,outputs:i?.outputs||[],site:t.auth.site,version:t.version},n),e.end()};return[{name:B,enforce:"post",async git(e){r=e,i&&await a()},async buildReport(t){i=t,!r&&T(e)||await a()}}]},pe=[e=>/modules\.tree\.(count|size)$/.test(e.metric)?null:e,e=>e.tags.some((e=>/^assetName:.*\.map$/.test(e)||/^moduleName:\/node_modules/.test(e)))?null:e,e=>{const t={size:1e5,count:10,duration:1e3};return/(entries|loaders|warnings|errors)\.count$/.test(e.metric)&&(t.count=0),/(modules\.(dependencies|dependents)$)/.test(e.metric)&&(t.count=30),/modules\.tree\.count$/.test(e.metric)&&(t.count=150),/modules\.tree\.size$/.test(e.metric)&&(t.size=15e5),/entries\.size$/.test(e.metric)&&(t.size=0),/entries\.modules\.count$/.test(e.metric)&&(t.count=0),e.points[0][1]>t[e.type]?e:null}],ce="metrics",le="datadog-metrics-plugin",de=e=>Math.floor((e||Date.now())/1e3),me=(e,t,n)=>({...e,tags:[...e.tags,...t],metric:n?`${n}.${e.metric}`:e.metric}),fe=(e="")=>e.endsWith("/")?e:`${e}/`,ge=(e,t)=>{let n=e;return e.split(fe(t)),n.split("!").pop().replace(/(.*)?\/node_modules\//,"/node_modules/").replace(/^((\.)*\/)+/,"")},he=(e,t)=>e.split("!").pop().replace(fe(t),"./"),ye=(e,t,n)=>{let s=e.name||e.userRequest;return s||(s=((e,t)=>{let n=e.userRequest;if(!n){let s;s=t.moduleGraph&&"function"==typeof t.moduleGraph.getIssuer?t.moduleGraph.getIssuer(e):e.issuer,n=s?.userRequest,n||(n=e._identifier?.split("!").pop())}return n||"unknown"})(e,t)),he(s||"no-name",n)},be=e=>e.replace(/^.*\/node_modules\/(@[a-z0-9][\w-.]+\/[a-z0-9][\w-.]*|[^/]+).*$/,"$1"),we=e=>e.map((e=>({type:e?.constructor?.name??typeof e,name:e?.name,value:"string"==typeof e?e:void 0}))),ve=t.bold.red,$e=t.bold.cyan,ke=e=>(t,n)=>{let s,o;return"function"==typeof e?(s=e(t),o=e(n)):(s=t[e],o=n[e]),s>o?-1:s<o?1:0},Se=(e,t)=>{if(!t||!t.size)return[];const n=Array.from(t.values());n.sort(ke("duration"));const s={name:`${e} duration`,values:n.map((e=>({name:e.name,value:j(e.duration)}))),top:!0};n.sort(ke("increment"));return[s,{name:`${e} hits`,values:n.map((e=>({name:e.name,value:e.increment.toString()}))),top:!0}]},Ee=(e,t,n)=>{const s=[];var o;n&&(s.push(...Se("Loader",n.loaders)),s.push(...Se("Tapable",n.tapables)),s.push(...Se("Module",n.modules))),s.push(...(e=>{const t={name:"Module total dependents",values:[],top:!0},n={name:"Module total dependencies",values:[],top:!0},s={name:"Module size",values:[],top:!0},o={name:"Module aggregated size",values:[],top:!0},r=new Set,i=M(e.build),a=new Map,u=new Map,p=new Map;for(const e of i.inputs||[]){if("map"===e.type)continue;const t=new Set(e.dependencies),n=new Set(e.dependents);for(const n of t)p.has(n)||p.set(n,new Set),p.get(n).add(e.filepath);for(const t of n)u.has(t)||u.set(t,new Set),u.get(t).add(e.filepath);if(u.has(e.filepath)){const n=u.get(e.filepath);for(const e of n)t.add(e)}if(p.has(e.filepath)){const t=p.get(e.filepath);for(const e of t)n.add(e)}u.set(e.filepath,t),p.set(e.filepath,n),a.set(e.filepath,{name:e.name,size:e.size,dependencies:t,dependents:n})}for(const[e,t]of a){const n=u.get(e)||new Set,s=p.get(e)||new Set;let o=t.size;for(const e of n)o+=a.get(e)?.size||0;r.add({name:t.name,size:t.size,aggregatedSize:o,dependents:s,dependencies:n})}if(!r.size)return[t,n,s];const c=Array.from(r);return c.sort(ke((e=>e.dependents.size))),t.values=c.map((e=>({name:e.name,value:e.dependents.size.toString()}))),c.sort(ke((e=>e.dependencies.size))),n.values=c.map((e=>({name:e.name,value:e.dependencies.size.toString()}))),c.sort(ke("size")),s.values=c.map((e=>({name:e.name,value:l(e.size)}))),c.sort(ke("aggregatedSize")),o.values=c.map((e=>({name:e.name,value:l(e.aggregatedSize||e.size)}))),[t,n,s,o]})(e)),s.push(...(o=e,[{name:"Asset size",values:(o.build.outputs||[]).filter((e=>"map"!==e.type)).sort(ke((e=>e.size))).map((e=>({name:e.name,value:l(e.size)}))),top:!0},{name:"Entry aggregated size",values:(o.build.entries||[]).sort(ke((e=>e.size))).map((e=>({name:e.name,value:l(e.size)}))),top:!0},{name:"Entry number of modules",values:(o.build.entries||[]).sort(ke((e=>e.size))).map((e=>({name:e.name,value:e.inputs.length.toString()})))||[],top:!0}])),s.push(...(e=>{const t={name:"General Numbers",values:[],top:!1},n=e.build.inputs?e.build.inputs.length:0,s=e.build.outputs?e.build.outputs.length:0,o=e.build.warnings.length,r=e.build.errors.length,i=e.build.entries?e.build.entries.length:0;return e.build.start&&t.values.push({name:"Overhead duration",value:j(e.build.start-e.start)}),e.build.duration&&t.values.push({name:"Build duration",value:j(e.build.duration)}),e.build.writeDuration&&t.values.push({name:"Write duration",value:j(e.build.writeDuration)}),t.values.push({name:"Number of modules",value:n.toString()},{name:"Number of assets",value:s.toString()},{name:"Number of entries",value:i.toString()},{name:"Number of warnings",value:o.toString()},{name:"Number of errors",value:r.toString()}),[t]})(e));const r=(e=>{let t="";for(const t of e){t.top&&t.values.length>=5&&(t.values=t.values.slice(0,5),t.name=`Top 5 ${t.name}`);for(const e of t.values)e.name=O(e.name,60)}const n=Math.max(...e.map((e=>e.name.length))),s=Math.max(...e.flatMap((e=>e.values.map((e=>e.name.length))))),o=Math.max(...e.flatMap((e=>e.values.map((e=>e.value.length))))),r=Math.max(n+4,s+o+4);for(const n of e){if(0===n.values.length)continue;const e=r-(n.name.length+4);t+=`\n== ${n.name} ${"=".repeat(e)}=\n`;for(const e of n.values){const n=o-e.value.length;t+=` [${ve(e.value)}] ${" ".repeat(n)}${$e(e.name)}\n`}}return t})(s);t.info(r)},De=["onStart","onLoad","onResolve","onEnd"],xe=new Map,Re=new Map,Pe=new Map,Me=(e,t,n)=>{const s=Object.assign({},e);for(const o of De)s[o]=async(s,r)=>{const i=Re.get(t)||{name:t,increment:0,duration:0,events:{}};i.events[o]=i.events[o]||{name:o,values:[]};const a="onLoad"===o;return(0,e[o])(s,(async(...e)=>{const s=he(e[0].path,n),u=Pe.get(s)||{name:s,increment:0,duration:0,events:{}};u.events[o]=u.events[o]||{name:o,values:[]};const p=d.performance.now();try{return await r(...e)}finally{const n=d.performance.now(),r=n-p,c={start:p,end:n,duration:r,context:we(e)};if(i.events[o].values.push(c),i.duration+=r,i.increment+=1,Re.set(t,i),u.events[o].values.push(c),u.duration+=r,u.increment+=1,Pe.set(s,u),a){const e=xe.get(t)||{name:t,increment:0,duration:0,events:{}};e.events[o]=e.events[o]||{name:o,values:[]},e.events[o].values.push(c),e.duration+=r,e.increment+=1,xe.set(t,e)}}}))};return s},Te=(e,t)=>({setup:n=>{n.initialOptions.metafile=!0;const s=t.time("wrapping plugins");((e,t)=>{const n=e.initialOptions.plugins;if(n){const e=n.map((e=>({...e})));for(const s of n){const n=s.setup;s.setup=async o=>{const r=Me(o,s.name,t);await n({...r,initialOptions:{...r.initialOptions,plugins:e}})}}}})(n,e.buildRoot),s.end(),n.onEnd((async n=>{if(!n.metafile)return void t.warn("Missing metafile, can't proceed with modules data.");const s=t.time("getting plugins results"),{plugins:o,loaders:r,modules:i}={plugins:Re,modules:Pe,loaders:xe};s.end(),await e.asyncHook("timings",{tapables:o,loaders:r,modules:i})}))}});class je{constructor(e){this.started={},this.finished=[],this.cwd=e}startModule(e,t){const n=ye(e,t,this.cwd),s=(e=>(e.loaders||[]).map((e=>e.loader||e)).map(be))(e);s.length||s.push("no-loader"),this.started[n]={module:ge(n),timings:{start:d.performance.now(),duration:0,end:0},loaders:s}}doneModule(e,t){const n=ye(e,t,this.cwd),s=this.started[n];s&&(s.timings.end=d.performance.now(),s.timings.duration=s.timings.end-s.timings.start,this.finished.push(s),delete this.started[n])}getResults(){const e=new Map,t=new Map;for(const n of this.finished){const s=n.timings.end-n.timings.start,o=t.get(n.module)||{name:n.module,increment:0,duration:0,events:{}},r=n.loaders.join(",");o.events[r]=o.events[r]||{name:r,values:[]},o.events[r].values.push(n.timings),o.increment+=1,o.duration+=s,t.set(n.module,o);for(const t of n.loaders){const n=e.get(t)||{name:t,increment:0,duration:0,events:{}};n.increment+=1,n.duration+=s,e.set(t,n)}}return{loaders:e,modules:t}}}class Oe{constructor(e){this.monitoredTaps={},this.tapables=[],this.hooks={},this.timings=new Map,this.ignoredHooks=["normalModuleLoader"],this.cwd=e}saveResult(e,t,n,s,o,r){const i=this.timings.get(t)||{name:t,duration:0,increment:0,events:{}};i.events[n]||(i.events[n]={name:n,values:[]}),i.events[n].values.push({start:o,end:r,duration:r-o,context:s,type:e}),i.duration+=r-o,i.increment+=1,this.timings.set(t,i)}getResults(){const e=this.timings;for(const[t,n]of this.timings){const s=n;s.duration=Object.values(n.events).map((e=>e.values.reduce(((e,t)=>e+t.end-t.start),0))).reduce(((e,t)=>e+t),0),e.set(t,s)}return{monitoredTaps:this.monitoredTaps,tapables:this.tapables,hooks:this.hooks,timings:e}}getPromiseTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=d.performance.now(),i=t.apply(this,o),a=()=>{this.saveResult(e,n,s,we(o),r,d.performance.now())};return i.then(a,a),i}}getAsyncTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=d.performance.now(),i=o.pop();return t.apply(this,[...o,(...t)=>(this.saveResult(e,n,s,we(o),r,d.performance.now()),i(...t))])}}getDefaultTapPatch(e,t,n,s){return(...o)=>{this.checkNewHooks();const r=d.performance.now(),i=t.apply(this,o);return this.saveResult(e,n,s,we(o),r,d.performance.now()),i}}getTapPatch(e,t,n,s){switch(e){case"promise":return this.getPromiseTapPatch(e,t,n,s);case"async":return this.getAsyncTapPatch(e,t,n,s);default:return this.getDefaultTapPatch(e,t,n,s)}}newTap(e,t,n,s){return(o,r)=>{const i="string"==typeof(a=o)?a:a.name;var a;const u=`${t}-${i}`;if(this.monitoredTaps[u])return n.call(s,o,r);this.monitoredTaps[u]=!0;const p=this.getTapPatch(e,r,i,t);return n.call(s,o,p)}}replaceTaps(e,t){t.tap=this.newTap("default",e,t.tap,t),t.tapAsync=this.newTap("async",e,t.tapAsync,t),t.tapPromise=this.newTap("promise",e,t.tapPromise,t)}patchHook(e,t,n){n._fakeHook||e.includes(le)||(this.hooks[e]||(this.hooks[e]=[]),this.hooks[e].includes(t)||(this.hooks[e].push(t),this.replaceTaps(t,n)))}patchHooks(e){const t=e.constructor.name,n=Object.keys(e.hooks).filter((e=>!this.ignoredHooks.includes(e)&&!this.hooks[t]?.includes(e)));for(const s of n)this.patchHook(t,s,e.hooks[s])}checkNewHooks(){for(const e of this.tapables)this.patchHooks(e)}throughHooks(e){this.tapables.includes(e)||this.tapables.push(e),this.patchHooks(e)}}const ze=e=>async t=>{const n=e.getLogger(le),s={name:le},o=new Oe(e.buildRoot),r=new je(e.buildRoot),i=n.time("parse compiler hooks");o.throughHooks(t),i.end(),t.hooks.thisCompilation.tap(s,(e=>{const t=n.time("parse compilation hooks");o.throughHooks(e),t.end(),e.hooks.buildModule.tap(s,(t=>{r.startModule(t,e)})),e.hooks.succeedModule.tap(s,(t=>{r.doneModule(t,e)})),e.hooks.failedModule&&e.hooks.failedModule.tap(s,(t=>{r.doneModule(t,e)}))})),t.hooks.afterEmit.tapPromise(s,(async()=>{const{timings:t}=o.getResults(),{loaders:n,modules:s}=r.getResults();await e.asyncHook("timings",{tapables:t,loaders:n,modules:s})}))},Ne={filters:pe},Ae=({options:e,context:t})=>{const n=t.getLogger(le);let s=0;const o=((e,t)=>{const n=e[ce],s=de(n?.timestamp);let o=!1===n?.enableStaticPrefix?"":`build.${t}`;return n?.prefix&&(o+=o?`.${n.prefix}`:n.prefix),{enable:!!e[ce],enableStaticPrefix:!0,enableTracing:!1,filters:pe,tags:[],...e[ce],timestamp:s,prefix:o.toLowerCase().replace(/(^\.*|\.*$)/g,"")}})(e,t.bundler.name),r=[];if(!o.enable)return r;const i={name:le,enforce:"pre",esbuild:Te(t,n),webpack:ze(t),rspack:ze(t)},a=n.time("build",{start:!1}),u=o.enableTracing&&["esbuild","webpack","rspack"].includes(t.bundler.name);let p,c;const l=async()=>{t.build.end=Date.now(),t.build.duration=t.build.end-t.build.start,t.build.writeDuration=t.build.end-s;const e=n.time("aggregating metrics"),r=o.timestamp,i=((e,t)=>{const n=new Set,s=e.inputs||[],o=e.outputs||[],r=e.entries||[],i=e.warnings.length,a=e.errors.length,u=e.duration,p=new Map,c=new Map,l=new Map;for(const e of r){for(const t of e.inputs)p.has(t.filepath)||p.set(t.filepath,[]),p.get(t.filepath).push(e.name);for(const t of e.outputs){const n=t.filepath.replace(/\.map$/,"");l.has(n)||l.set(n,[]),l.get(n).push(e.name)}}for(const e of o)for(const t of e.inputs)c.has(t.filepath)||c.set(t.filepath,[]),c.get(t.filepath).push(e.name);n.add({metric:"assets.count",type:"count",points:[[t,o.length]],tags:[]}).add({metric:"entries.count",type:"count",points:[[t,r.length]],tags:[]}).add({metric:"errors.count",type:"count",points:[[t,a]],tags:[]}).add({metric:"modules.count",type:"count",points:[[t,s.length]],tags:[]}).add({metric:"warnings.count",type:"count",points:[[t,i]],tags:[]}),u&&n.add({metric:"compilation.duration",type:"duration",points:[[t,u]],tags:[]});for(const e of s){const s=[`moduleName:${e.name}`,`moduleType:${e.type}`];p.has(e.filepath)&&s.push(...p.get(e.filepath).map((e=>`entryName:${e}`))),c.has(e.filepath)&&s.push(...c.get(e.filepath).map((e=>`assetName:${e}`))),n.add({metric:"modules.size",type:"size",points:[[t,e.size]],tags:s}).add({metric:"modules.dependencies",type:"count",points:[[t,e.dependencies.size]],tags:s}).add({metric:"modules.dependents",type:"count",points:[[t,e.dependents.size]],tags:s})}for(const e of o){const s=[`assetName:${e.name}`,`assetType:${e.type}`],o=e.filepath.replace(/\.map$/,"");l.has(o)&&s.push(...l.get(o).map((e=>`entryName:${e}`))),n.add({metric:"assets.size",type:"size",points:[[t,e.size]],tags:s}).add({metric:"assets.modules.count",type:"count",points:[[t,e.inputs.length]],tags:s})}for(const e of r){const s=[`entryName:${e.name}`];n.add({metric:"entries.size",type:"size",points:[[t,e.size]],tags:s}).add({metric:"entries.modules.count",type:"count",points:[[t,e.inputs.length]],tags:s}).add({metric:"entries.assets.count",type:"count",points:[[t,e.outputs.length]],tags:s})}return n})(c,r),a=((e,t)=>{const n=new Set;if(!e)return n;n.add({metric:"plugins.count",type:"count",points:[[t,e.size]],tags:[]});for(const s of e.values()){let e=0,o=0;for(const r of Object.values(s.events)){let i=0;o+=r.values.length;for(const t of r.values){const n=t.end-t.start;i+=n,e+=n}n.add({metric:"plugins.hooks.duration",type:"duration",points:[[t,i]],tags:[`pluginName:${s.name}`,`hookName:${r.name}`]}).add({metric:"plugins.hooks.increment",type:"count",points:[[t,r.values.length]],tags:[`pluginName:${s.name}`,`hookName:${r.name}`]})}n.add({metric:"plugins.duration",type:"duration",points:[[t,e]],tags:[`pluginName:${s.name}`]}).add({metric:"plugins.increment",type:"count",points:[[t,o]],tags:[`pluginName:${s.name}`]})}return n})(p?.tapables,r),u=((e,t)=>{const n=new Set;if(!e)return n;n.add({metric:"loaders.count",type:"count",points:[[t,e.size]],tags:[]});for(const s of e.values())n.add({metric:"loaders.duration",type:"duration",points:[[t,s.duration]],tags:[`loaderName:${s.name}`]}).add({metric:"loaders.increment",type:"count",points:[[t,s.increment]],tags:[`loaderName:${s.name}`]});return n})(p?.loaders,r),l=((e,t,n,s,o)=>{const r=new Set;for(const t of e){let e={...t,toSend:!0};if(n?.length)for(const t of n){const n=t({metric:e.metric,type:e.type,points:e.points,tags:e.tags});n?e={...n,toSend:e.toSend}:e.toSend=!1}r.add(me(e,s,o))}const i=Array.from(r).filter((e=>e.toSend)).length;return r.add(me({metric:"metrics.count",type:"count",points:[[t,i+1]],tags:[],toSend:!0},s,o)),r})(new Set([...i,...a,...u]),r,o.filters,o.tags,o.prefix);await t.asyncHook("metrics",l),e.end();const d=n.time("outputing report");Ee(t,n,p),d.end();const m=n.time("sending metrics to Datadog");await((e,t,n)=>{if(!t.apiKey)return void n.info("Won't send metrics to Datadog: missing API Key.");if(!e.size)return void n.info("No metrics to send.");const s=new Map;for(const t of e)s.has(t.metric)||s.set(t.metric,0),s.set(t.metric,s.get(t.metric)+1);const o=Array.from(s.entries()).sort((([e],[t])=>e.localeCompare(t))).map((([e,t])=>`${e} - ${t}`));n.debug(`\nSending ${e.size} metrics.\nMetrics:\n - ${o.join("\n - ")}`);const r=Array.from(e).filter((e=>e.toSend)).map((e=>({...e,toSend:void 0})));return D({method:"POST",url:`https://api.${t.site}/api/v1/series?api_key=${t.apiKey}`,getData:()=>({data:JSON.stringify({series:r})})}).catch((e=>{n.error(`Error sending metrics ${e}`)}))})(l,{apiKey:t.auth.apiKey,site:t.auth.site},n),m.end()},d={name:"datadog-universal-metrics-plugin",enforce:"post",buildStart(){a.resume(),t.build.start=t.build.start||Date.now(),e[ce]?.timestamp||(o.timestamp=de(t.build.start))},buildEnd(){a.end(),s=Date.now()},async timings(e){p=e,c&&await l()},async buildReport(e){c=e,!p&&u||await l()}};return o.enableTracing&&r.push(i),r.push(d),r},Ie="output",Ce=(e,t)=>"string"==typeof t?t.replace(/(\.json)?$/,".json"):!0===t?`${e}.json`:t,Fe=e=>{const t=void 0===e;return{build:Ce("build",e?.build??t),bundler:Ce("bundler",e?.bundler??t),dependencies:Ce("dependencies",e?.dependencies??t),errors:Ce("errors",e?.errors??t),logs:Ce("logs",e?.logs??t),metrics:Ce("metrics",e?.metrics??t),timings:Ce("timings",e?.timings??t),warnings:Ce("warnings",e?.warnings??t)}},Le=e=>t=>{t.hooks.done.tap("bundler-outputs",(t=>{const n=t.toJson({all:!1,assets:!0,children:!0,chunks:!0,chunkGroupAuxiliary:!0,chunkGroupChildren:!0,chunkGroups:!0,chunkModules:!0,chunkRelations:!0,entrypoints:!0,errors:!0,ids:!0,modules:!0,nestedModules:!0,reasons:!0,relatedAssets:!0,warnings:!0});e(n)}))},_e=e=>{const t=new Set;return{buildStart(){t.clear()},writeBundle(e,n){t.add(n)},closeBundle(){e(Array.from(t))}}},qe=({options:e,context:t})=>{const n=(e=>({enable:!!e[Ie],path:"./",...e[Ie],files:Fe(e[Ie]?.files)}))(e);if(!n.enable)return[];const s=(e,s)=>{const r=n.files[e];s&&!1!==r&&((e,t)=>{const n=JSON.stringify(t,null,4);G(e,n)})(((e,t,n)=>{const s=o.isAbsolute(t)?t:o.resolve(e,t);return o.resolve(s,n)})(t.bundler.outDir,n.path,r),s)};return[{name:"datadog-output-plugin",buildReport(e){const t=M(e);s("build",{bundler:t.bundler,metadata:t.metadata,start:t.start,end:t.end,duration:t.duration,writeDuration:t.writeDuration,entries:t.entries,outputs:t.outputs}),s("logs",t.logs),s("timings",t.timings),s("dependencies",t.inputs),s("errors",t.errors),s("warnings",t.warnings)},metrics(e){s("metrics",Array.from(e))},esbuild:{setup(e){e.onEnd((e=>{s("bundler",e.metafile)}))}},rspack:Le((e=>{s("bundler",e)})),rollup:_e((e=>{s("bundler",e)})),vite:_e((e=>{s("bundler",e)})),webpack:Le((e=>{s("bundler",e)}))}]};var Ke=(e=>(e[e.BEFORE=0]="BEFORE",e[e.MIDDLE=1]="MIDDLE",e[e.AFTER=2]="AFTER",e))(Ke||{});const He="rum",Be="datadog-rum-plugin",We="datadog-rum-privacy-plugin";const Ue=e=>`DD_RUM.init({${JSON.stringify(e.sdk).replace(/(^{|}$)/g,"")}});\n`,Ge=(e,t)=>{const n=e.sdk;if(n.clientToken)return Ue(e);if(!t.auth.apiKey||!t.auth.appKey)throw new Error('Missing "auth.apiKey" and/or "auth.appKey" to fetch "rum.sdk.clientToken".');return async()=>{let s;try{const e=await D({url:`https://api.${t.auth.site}/api/v2/rum/applications/${n.applicationId}`,type:"json",auth:t.auth});s=e.data?.attributes?.client_token}catch(e){throw new Error(`Could not fetch the clientToken: ${e.message}`)}if(!s)throw new Error("Missing clientToken in the API response.");return Ue({...e,sdk:{clientToken:s,...n}})}},Je=e=>{const n=t.bold.red,s=e[He]||{},o={errors:[]};if(!s.sdk)return o;s.sdk.applicationId||o.errors.push(`Missing ${n("applicationId")} in the SDK configuration.`),e.auth.apiKey&&e.auth.appKey||s.sdk.clientToken||o.errors.push(`Missing ${n('"auth.apiKey"')} and/or ${n('"auth.appKey"')} to fetch missing client token.`);return o.config={applicationId:"unknown_application_id",allowUntrustedEvents:!1,compressIntakeRequests:!1,defaultPrivacyLevel:"mask",enablePrivacyForActionName:!1,sessionReplaySampleRate:0,sessionSampleRate:100,silentMultipleInit:!1,site:"datadoghq.com",startSessionReplayRecordingManually:!1,storeContextsAcrossPages:!1,telemetrySampleRate:20,traceSampleRate:100,trackingConsent:"granted",trackLongTasks:!1,trackResources:!1,trackUserInteractions:!1,trackViewsManually:!1,...s.sdk},o},Ve=e=>{const t=e[He]||{},n={errors:[]};if(t.privacy){const e={exclude:[/\/node_modules\//,/\.preval\./,/^[!@#$%^&*()=+~`-]/],include:[/\.(?:c|m)?(?:j|t)sx?$/],addToDictionaryFunctionName:"$",helperCodeExpression:"/*__PURE__*/((q='$DD_A_Q',g=globalThis)=>(g[q]=g[q]||[],(v=>(g[q].push(v),v))))()"};n.config={...e,...t.privacy}}return n},Ye=({options:e,context:t})=>{const n=((e,t)=>{const n=[],s=Je(e),o=Ve(e);if(n.push(...s.errors),n.push(...o.errors),n.length)throw t.error(`\n - ${n.join("\n - ")}`),new Error(`Invalid configuration for ${Be}.`);const r={enable:!!e[He],...e[He],sdk:void 0,privacy:void 0};return s.config&&(r.sdk=s.config),o.config&&(r.privacy=o.config,t.debug(`datadog-rum-privacy plugin options: ${JSON.stringify(r.privacy,((e,t)=>t instanceof RegExp?t.toString():t))}`,{forward:!0})),r})(e,t.getLogger(Be)),s=[];if(!n.enable)return s;if(n.sdk&&(t.inject({type:"file",position:Ke.MIDDLE,value:o.join(__dirname,"./rum-browser-sdk.js")}),t.inject({type:"code",position:Ke.MIDDLE,value:Ge(n,t)})),n.privacy){t.inject({type:"file",position:Ke.BEFORE,value:o.join(__dirname,"./privacy-helpers.js")});const e=((e,t)=>{const n=t.getLogger(We),s=function(e,t){const n={privacy:{addToDictionaryHelper:{expression:{code:e}}}};return["esbuild","webpack","rspack"].includes(t)&&(n.output={...n.output,inlineSourceMap:!1,embedCodeInSourceMap:!0}),n}(e.helperCodeExpression,t.bundler.name);return{name:We,enforce:"post",transform:{filter:{id:{include:e.include,exclude:e.exclude}},handler(e,t){try{return m.instrument({id:t,code:e},s)}catch(t){return n.error(`Instrumentation Error: ${t}`,{forward:!0}),{code:e}}}}}})(n.privacy,t);s.push(e)}return s},Qe="datadog-analytics-plugin",Xe=({context:e})=>{const t=e.getLogger(Qe);return[{name:Qe,async buildStart(){"production"===e.env&&e.queue((async()=>{try{await e.sendLog({message:"Build started",context:{plugins:e.pluginNames}})}catch(e){t.debug(`Could not submit data to Datadog: ${e}`)}})())}}]},Ze="datadog-async-queue-plugin",et=e=>{const{context:t,stores:n}=e,s=t.getLogger(Ze),o=[];return t.queue=e=>{const t=e.catch((e=>{o.push(e.message||e.toString())}));n.queue.push(t)},[{name:Ze,asyncTrueEnd:async()=>{await Promise.all(n.queue),o.length>0&&s.error(`Error occurred while processing async queue:\n ${o.join("\n ")}`)}}]},tt=async(e,t,n)=>{const s=[],o=e.initialOptions.entryPoints,r=[],i=[];if(Array.isArray(o))for(const e of o){const t=e&&"object"==typeof e?e.in:e;r.push({path:t})}else o&&"object"==typeof o&&r.push(...Object.entries(o).map((([e,t])=>({name:e,path:t}))));const a=r.flatMap((e=>{return(t=e.path,t.includes("*")?f.glob.sync(t):[t]).map((t=>[e,t]));var t})).map((async([n,o])=>{const r=await e.resolve(o,{kind:"entry-point",resolveDir:t.buildRoot});r.errors.length&&i.push(...r.errors.map((e=>e.text))),r.path&&s.push({name:n.name,resolved:r.path,original:n.path})}));for(const e of i)n.error(e);return await Promise.all(a),s},nt=(e,t)=>P(t)?v:t.startsWith(e)||o.isAbsolute(t)?t:o.resolve(e,t),st=(e,t)=>{const n=[...e].map((e=>nt(t||process.cwd(),e).split(o.sep))),s=n.length?Math.min(...n.map((e=>e.length))):0,r=[];for(let e=0;e<s;e++){const t=n[0][e];if(!n.every((n=>n[e]===t)))break;r.push(t)}return r.length>0&&r.join(o.sep)||o.sep},ot=/\.(?!.*(?:\.|\/|\\))(\w{1,})/g,rt=/(\?|%3F|\|)+/gi,it=e=>{return"unknown"===e?e:e.includes("webpack/runtime")?"runtime":(t=pt(e),ot.lastIndex=0,ot.exec(t)?.[1]||"unknown");var t},at=["unknown","commonjsHelpers.js",`vite${o.sep}preload-helper.js`],ut=(e,t,n)=>{const s=new Set;for(const n of e){const e=pt(n);P(n)||e===t||at.includes(e)||s.add(e)}return s},pt=e=>e.split("!").pop().split(rt).shift().replace(/^[^\w\s.,!@#$%^&*()=+~`\-/\\]+/,""),ct=(e,t)=>P(t)?v:"unknown"===t?t:t.includes("webpack/runtime")?t.replace("webpack/runtime/","").replace(/ +/g,"-"):((e,t)=>{const n=t.split(o.sep),s=e.split(o.sep).filter(((e,t)=>e===n[t])).join(o.sep);return e.replace(s,"")})(t.split("!").pop(),e).split("node_modules").pop().split(rt).shift().replace(/^((\.\.?)?[/\\])+/g,""),lt=(e,t)=>Object.fromEntries(Object.entries(e).map((([e,n])=>[nt(t,e),n]))),dt=(e,t)=>({setup(n){const s=new Map;let r=[];const i=t.time("build report",{start:!1});n.onStart((async()=>{s.clear(),r=[],i.resume();const o=t.time("process entries");r.push(...await tt(n,e,t));for(const t of r){const n=ct(e.bundler.outDir,t.resolved);t.name?s.set(n,t.name):s.set(n,n)}o.end(),i.pause()})),n.onEnd((async n=>{i.resume();const r=t.time("collecting errors and warnings"),a=e.bundler.outDir,u=e.buildRoot;for(const t of n.errors)e.build.errors.push(t.text);for(const t of n.warnings)e.build.warnings.push(t.text);if(r.end(),!n.metafile){const n="Missing metafile from build report.";return e.build.warnings.push(n),void t.warn(n)}const p=[],c=[],l=[],d=[],m=[],f={},g={},h=t.time("indexing metafile data"),y=lt(n.metafile.inputs,u),b=lt(n.metafile.outputs,u);h.end();const w=e=>{if(!P(e))return e;const t=y[nt(u,e)];if(!t)return e;const n=t.imports.find((e=>!P(e.path)));return n?n.path:e},v=t.time("looping through inputs");for(const[e,t]of Object.entries(n.metafile.inputs)){if(P(e))continue;const n=nt(u,e),s={name:ct(a,e),filepath:n,dependents:new Set,dependencies:new Set,size:t.bytes,type:it(e)};f[n]=s,p.push(s)}v.end();const $=t.time("looping through outputs");for(const[e,o]of Object.entries(n.metafile.outputs)){const n=nt(u,e),r=ct(a,n),i=[];for(const e of Object.keys(o.inputs)){if(P(e))continue;const n=f[nt(u,e)];n?i.push(n):t.debug(`Input ${e} not found for output ${r}`)}if(o.entryPoint&&!i.length){const e=f[nt(u,o.entryPoint)];if(!e){t.debug(`Input ${o.entryPoint} not found for output ${r}`);continue}i.push(e)}const p={name:r,filepath:n,inputs:i,size:o.bytes,type:it(n)};if(g[n]=p,"map"===p.type&&d.push(p),c.push(p),!o.entryPoint)continue;const m=f[nt(u,w(o.entryPoint))];if(m){if(!s.get(m.name))continue;const e={...p,name:s.get(m.name)||m.name,outputs:[p],size:p.size};l.push(e)}}$.end();const k=t.time("looping through sourcemaps");for(const e of d){const n=g[e.filepath.replace(/\.map$/,"")];n?e.inputs.push(n):t.debug(`Could not find output for sourcemap ${e.name}`)}k.end();const S={inputs:{report:f,meta:y},outputs:{report:g,meta:b}},E=/(<runtime>|https:|file:|data:|#)/g,D=e=>!P(e)&&!e.match(E),x=(e,n,s={})=>{if(!D(e))return s;const r=n.report[e];if(!r)return t.debug(`Could not find report's ${e}`),s;if(s[r.filepath])return s;s[r.filepath]=r;const i=n.meta[e];if(!i)return t.debug(`Could not find metafile's ${e}`),s;if(!i.imports||!i.imports.length)return s;for(const t of i.imports){const i=t.path.match(/^\.\.?\//),c=i?o.dirname(e):u,l=nt(c,t.path);if(t.external){if(D(t.path)){const e=i?l:t.path,n=S.inputs.report[e]||{filepath:e,name:ct(a,t.path),size:0,type:"external",dependencies:new Set,dependents:new Set};"dependencies"in r&&(n.dependents.add(r),r.dependencies.add(n)),"inputs"in r&&!r.inputs.includes(n)&&r.inputs.push(n),p.includes(n)||p.push(n),S.inputs.report[e]=n,s[n.filepath]=n}}else x(l,n,s)}return s},R=t.time("looping through entries");for(const e of l){const t={},n={};for(const n of e.inputs)x(n.filepath,S.inputs,t);for(const t of e.outputs)x(t.filepath,S.outputs,n);e.inputs=Object.values(t),e.outputs=Object.values(n),e.size=e.outputs.reduce(((e,t)=>e+t.size),0),m.push(e)}R.end();const M=t.time("aggregate dependencies and dependents");for(const e of p){if("external"===e.type)continue;const n=S.inputs.meta[e.filepath];if(n)for(const s of n.imports){if(!D(s.path))continue;const n=s.path.match(/^\.?\.\//),r=n?o.dirname(e.filepath):u,i=nt(r,s.path);let a;if(s.external){const e=n?i:s.path;a=S.inputs.report[e]}else a=S.inputs.report[i];a?(e.dependencies.add(a),a.dependents.add(e)):t.debug(`Could not find input file of ${s.path} imported from ${e.name}`)}else t.debug(`Could not find metafile's ${e.name}`)}M.end(),e.build.outputs=c,e.build.inputs=p,e.build.entries=m,i.end(),await e.asyncHook("buildReport",e.build)}))}}),mt=(e,t)=>{const n=t.time("module parsing",{start:!1}),s=t.time("build report",{start:!1}),o=t.time("filling entries",{start:!1}),r=t.time("filling inputs and outputs",{start:!1}),i=t.time("completing dependencies and dependents",{start:!1}),a=t.time("filling dependencies and dependents",{start:!1}),u=t.time("filling sourcemaps inputs",{start:!1}),p=new Map,c=new Map,l=new Map,d=new Map;return{buildStart(){d.clear(),p.clear(),c.clear(),l.clear()},onLog(t,n){"warn"===t&&e.build.warnings.push(n.message||n.toString())},renderError(t){t&&e.build.errors.push(t.message)},moduleParsed(e){n.resume();const t=pt(e.id),s=d.get(t)||{dependencies:new Set,dependents:new Set},o=ut(new Set([...e.dynamicallyImportedIds,...e.importedIds]),t),r=ut(new Set([...e.dynamicImporters,...e.importers]),t);for(const e of r)s.dependents.add(e);for(const e of o)s.dependencies.add(e);d.set(t,s),n.tag([`module:${t}`],{span:!0}),n.pause()},writeBundle(n,m){s.resume();const f=n.dir?nt(e.buildRoot,n.dir):e.bundler.outDir,g=new Set,h=new Set,y=new Map;i.resume();for(const[e,{dependencies:t,dependents:n}]of d){for(const n of t){const t=pt(n),s=d.get(t)||{dependencies:new Set,dependents:new Set};s.dependents.has(e)||(s.dependents.add(e),d.set(t,s))}for(const t of n){const n=pt(t),s=d.get(n)||{dependencies:new Set,dependents:new Set};s.dependencies.has(e)||(s.dependencies.add(e),d.set(n,s))}}i.end(),r.resume();for(const[e,n]of Object.entries(m)){const s=nt(f,e),o="code"in n?Buffer.byteLength(n.code,"utf8"):Buffer.byteLength(n.source,"utf8"),r=c.get(s)||{name:e,filepath:s,inputs:[],size:o,type:it(e)};if("map"===r.type&&h.add(r),"modules"in n)for(const[e,t]of Object.entries(n.modules)){if(pt(e)!==e)continue;const n=p.get(e)||{name:ct(f,e),dependencies:new Set,dependents:new Set,filepath:e,size:t.originalLength,type:it(e)};r.inputs.push(n),p.set(n.filepath,n)}if("imports"in n)for(const e of n.imports){const n=pt(e);if(!d.has(n)){y.set(nt(f,n),r);continue}if(p.has(n)){t.debug(`Input report already there for ${n} from ${r.name}.`);continue}const s=p.get(n)||{name:ct(f,e),dependencies:new Set,dependents:new Set,filepath:n,size:0,type:"external"};r.inputs.push(s),p.set(s.filepath,s)}"isEntry"in n&&n.isEntry&&g.add({...r,name:n.name,size:0,outputs:[r]}),c.set(r.filepath,r)}r.end();for(const[e,n]of y){const s=c.get(e);s?n.inputs.includes(s)||n.inputs.push(s):t.debug(`Could not find the output report for ${e}.`)}a.resume();for(const[e,n]of p){const s=d.get(e);if(s){for(const e of s.dependencies){const s=p.get(e);s?n.dependencies.add(s):t.debug(`Could not find input for dependency ${ct(f,e)} of ${n.name}`)}for(const e of s.dependents){const s=p.get(e);s?n.dependents.add(s):t.debug(`Could not find input for dependent ${ct(f,e)} of ${n.name}`)}}else t.debug(`Could not find the import report for ${n.name}.`)}if(a.end(),h.size){u.resume();for(const e of h){const n=e.filepath.replace(/\.map$/,""),s=c.get(n);s?e.inputs.push(s):t.debug(`Could not find output for sourcemap ${e.name}`)}u.end()}const b=(e,n=new Map)=>{if(n.has(e))return n;const s=ct(f,e),o=c.get(e);if(!o)return p.has(s)||t.debug(`Could not find output for ${s}`),n;n.set(e,o);const r=m[ct(f,e)];if(!r)return t.debug(`Could not find asset for ${s}`),n;const i=[];"imports"in r&&i.push(...r.imports),"dynamicImports"in r&&i.push(...r.dynamicImports);for(const e of i)b(nt(f,e),n);return n};o.resume();for(const e of g){const n=b(e.filepath);e.outputs=Array.from(n.values()),e.inputs=Array.from(new Set(e.outputs.flatMap((e=>e.inputs)))),e.size=e.outputs.reduce(((e,t)=>e+t.size),0),l.has(e.filepath)&&t.debug(`Entry "${e.name}":"${ct(f,e.filepath)}" already reported.`),l.set(e.filepath,e)}o.pause(),s.pause()},async closeBundle(){e.build.inputs=Array.from(p.values()),e.build.outputs=Array.from(c.values()),e.build.entries=Array.from(l.values()),o.end(),s.end(),await e.asyncHook("buildReport",e.build)}}},ft=(e,t,n)=>s=>{let o=[],r=[],i=[];const a=new Map,u=new Map,p=new Map,c=new Map,l=[],d=new Map,m=n.time("build report",{start:!1}),f=e=>!(!e||e.startsWith("webpack/runtime")||e.startsWith("multi ")||P(e)),g=e=>e.replace(/(^external[^"]+"|"$)/g,""),h=e=>{const t=(e=>{const t=e.identifier();return{identifier:()=>t,dependencies:"dependencies"in e?[...e.dependencies]:[],blocks:"blocks"in e?[...e.blocks]:[],externalType:"externalType"in e?e.externalType:void 0,external:"external"in e?e.external:void 0}})(e),n=(e=>{const t=new Set,n=["rawRequest","resource","request","userRequest"],s=e=>{const n=pt(e);t.add(n),n.startsWith("external ")&&t.add(g(n))};s(e.identifier());for(const t of n){const n=e[t];t&&t in e&&"string"==typeof n&&s(n)}return t})(e);for(const e of n)if(c.has(e)){const n=c.get(e);n.dependencies.push(...t.dependencies||[]),n.blocks.push(...t.blocks||[])}else c.set(e,t)},y=(e,t=[])=>{if("dependencies"in e)for(const n of e.dependencies)t.push(n),y(n,t);if("blocks"in e)for(const n of e.blocks)y(n,t);return t},b=(e,t)=>{if("request"in t&&t.request){const n=pt(t.request);if(c.has(n))return c.get(n);if(e.context){const t=nt(pt(e.context),n);if(c.has(t))return c.get(t)}}},w=e=>!(!("externalType"in e)||!e.externalType)||(!(!("external"in e)||!e.external)||!!e.identifier?.().startsWith("external "));s.hooks.thisCompilation.tap(t,(s=>{o=[],r=[],i=[],a.clear(),u.clear(),c.clear(),d.clear(),s.hooks.finishModules.tap(t,(t=>{m.resume();const s=n.time("dependency graph"),r=n.time("indexing modules");for(const e of t)h(e);r.end();const i=n.time("building inputs");for(const n of t){const t=n.identifier(),s=ct(e.bundler.outDir,t),r=new Set(y(n).map((e=>{const s=b(n,e);if(!s?.identifier())return!1;const o=s.identifier();return!!f(o)&&(o!==t&&(w(s)?g(o):o))})).filter(Boolean));if(!f(t))continue;const i=d.get(t)||{dependents:new Set,dependencies:new Set};for(const e of r){const n=d.get(e)||{dependencies:new Set,dependents:new Set};n.dependents.add(t),i.dependencies.add(e),d.set(e,n)}d.set(t,i);const u=w(n)?{size:0,name:g(s),dependencies:new Set,dependents:new Set,filepath:t,type:"external"}:{size:n.size()||0,name:s,dependencies:new Set,dependents:new Set,filepath:t,type:it(t)};o.push(u),a.set(t,u),w(n)&&a.set(g(t),u)}i.end();const u=n.time("assigning dependencies and dependents");for(const e of o){const t=d.get(e.filepath);if(t){for(const s of t.dependencies){const t=a.get(s);t?e.dependencies.add(t):n.debug(`Could not find input of dependency ${s}`)}for(const s of t.dependents){const t=a.get(s);t?e.dependents.add(t):n.debug(`Could not find input of dependent ${s}`)}}else n.debug(`Could not find dependency report for ${e.name}`)}u.end(),s.end(),m.pause()}))})),s.hooks.afterEmit.tapPromise(t,(async t=>{m.resume();const s=t.chunks,c=t.getAssets(),d=t=>[...t.files||[],...t.auxiliaryFiles||[]].map((t=>nt(e.bundler.outDir,t))),g=n.time("indexing chunks"),h=t.chunkGraph;for(const e of s){const t=d(e),n=(h?.getChunkModules(e)||[]).flatMap((e=>"modules"in e&&Array.isArray(e.modules)?e.modules.map((e=>e.identifier())):e.identifier())).filter(f);for(const e of t){if("map"===it(e))continue;const t=p.get(e)||new Set;for(const e of n)t.add(e);p.set(e,t)}}g.end();const y=n.time("building outputs");for(const t of c){const s={size:t.source.size()||0,name:t.name,inputs:[],filepath:nt(e.bundler.outDir,t.name),type:it(t.name)};if(u.set(s.filepath,s),r.push(s),"map"===s.type){l.push(s);continue}const o=p.get(s.filepath);if(o)for(const e of o){const t=a.get(e);t?s.inputs.push(t):n.debug(`Could not find input of ${e}`)}else n.debug(`Could not find modules for ${s.name}`)}y.end();const b=n.time("filling sourcemaps inputs");for(const e of l){const t=u.get(e.filepath.replace(/\.map$/,""));t?e.inputs.push(t):n.debug(`Output not found for sourcemap ${e.name}`)}b.end();const w=n.time("building entries");for(const[s,o]of t.entrypoints){const t=new Map,r=new Map;let a=0;const p=o.chunks.flatMap(d),c=o.chunks.filter((e=>h.getChunkEntryModulesIterable(e)||!1)).flatMap((e=>Array.from(e.files))).filter((e=>e.includes(s)||o.name&&e.includes(o.name))).find((e=>"js"===it(e)));for(const e of p){const s=u.get(e);if(e&&s){if("map"!==s.type&&!t.has(s.name)){t.set(s.name,s);for(const e of s.inputs)r.has(e.filepath)||r.set(e.filepath,e);a+=s.size}}else n.debug(`Could not find output of ${JSON.stringify(e)}`)}const l={name:s,filepath:c?nt(e.bundler.outDir,c):"unknown",size:a,inputs:Array.from(r.values()),outputs:Array.from(t.values()),type:c?it(c):"unknown"};i.push(l)}w.end();for(const n of t.errors)e.build.errors.push(n.message);for(const n of t.warnings)e.build.warnings.push(n.message);e.build.inputs=o,e.build.outputs=r,e.build.entries=i,m.end(),await e.asyncHook("buildReport",e.build)}))},gt="datadog-build-report-plugin",ht=e=>{const{context:t}=e,n=t.getLogger(gt);return[{name:gt,enforce:"post",esbuild:dt(t,n),rspack:ft(t,gt,n),webpack:ft(t,gt,n),vite:mt(t,n),rollup:mt(t,n)}]},yt="datadog-bundler-report-plugin",bt=(e,t)=>t?o.isAbsolute(t)?t:o.resolve(e,t):"",wt=e=>{if(!e)return[];return(Array.isArray(e)?e:[e]).map((e=>e.dir?e.dir:e.file?o.dirname(e.file):void 0)).filter(Boolean)},vt=e=>t=>{e.bundler.rawConfig=t.options,t.options.output?.path&&(e.bundler.outDir=bt(process.cwd(),t.options.output.path)),e.hook("bundlerReport",e.bundler),t.options.context&&(e.buildRoot=t.options.context),e.hook("buildRoot",e.buildRoot)},$t=e=>({configResolved(t){e.bundler.rawConfig=t;let n=t.build?.outDir??"dist";const s=t.build?.rollupOptions?.output,o=wt(s);e.buildRoot=t.root??process.cwd(),s&&o.length&&(n=st(o,process.cwd())),e.bundler.outDir=bt(e.buildRoot,n),e.hook("buildRoot",e.buildRoot),e.hook("bundlerReport",e.bundler)}}),kt=e=>{const{context:t}=e,n=t.getLogger(yt);return[{name:yt,enforce:"pre",esbuild:{setup(e){t.bundler.rawConfig=e.initialOptions,e.initialOptions.absWorkingDir&&(t.buildRoot=e.initialOptions.absWorkingDir),e.initialOptions.outdir&&(t.bundler.outDir=bt(t.buildRoot,e.initialOptions.outdir)),e.initialOptions.outfile&&(t.bundler.outDir=bt(t.buildRoot,o.dirname(e.initialOptions.outfile))),t.hook("buildRoot",t.buildRoot),t.hook("bundlerReport",t.bundler),e.initialOptions.metafile=!0}},webpack:vt(t),rspack:vt(t),vite:$t(t),rollup:{options(e){let n;if("output"in e){const t=wt(e.output);n=st(t,process.cwd())}const s=(e=>{const t=new Set;if(e.input){const n=Array.isArray(e.input)?e.input:"object"==typeof e.input?Object.values(e.input):[e.input];for(const e of n){if("string"!=typeof e)throw new Error("Invalid input type");t.add(o.dirname(e))}}return Array.from(t)})(e);if(n){t.bundler.outDir=nt(process.cwd(),n);const e=st([n,...s],process.cwd());t.buildRoot=e===o.sep?process.cwd():e}else t.buildRoot=st(s,process.cwd()),t.bundler.outDir=o.resolve(process.cwd(),"dist");t.hook("buildRoot",t.buildRoot)},buildStart(e){t.bundler.rawConfig=e},renderStart(e){t.bundler.rawConfig.outputs=t.bundler.rawConfig.outputs||[],t.bundler.rawConfig.outputs.push(e),t.hook("bundlerReport",t.bundler);const s=wt(e);st(s,process.cwd()).startsWith(t.bundler.outDir)||n.info("The output directory has been changed by a plugin and may introduce some inconsistencies in the build report.")}}}]},St="datadog-custom-hooks-plugin",Et=e=>{const{context:t}=e,n=t.getLogger(St),s=e=>(s,...o)=>{const r=n.time(`execution | ${s}`,{tags:["type:custom-hook",`hook:${s}`]}),i=[],a=[];for(const n of t.plugins){if(!(s in n))continue;const t=n[s];if("function"==typeof t)try{const r=t(...o);r instanceof Promise&&(e||i.push(`Plugin "${n.name}" returned a promise on the non async hook "${s}".`),a.push(r))}catch(e){i.push(`Plugin "${n.name}" errored on hook "${s}". [${e}]`)}else i.push(`Plugin "${n.name}" has an invalid hook type for "${s}". [${typeof t}]`)}if(i.length>0){for(const e of i)n.error(e);throw new Error("Some plugins errored during the hook execution.")}return Promise.all(a).finally((()=>r.end()))};return t.hook=s(!1),t.asyncHook=s(!0),[{name:St,enforce:"pre"}]};class Dt{constructor(e){this.trackedFilenames=new Map;for(const t of e){const e=this.getFilename(t),n=this.trackedFilenames.get(e);n?n.push(t):this.trackedFilenames.set(e,new Array(t))}}displaySource(e){return e.length<=40?e:`[...]${e.slice(-35)}`}matchSourcemap(e,t){const n=(s=e,a.readFileSync(s,{encoding:"utf-8"}));var s;const o=JSON.parse(n);if(!o.sources)return void t("Missing 'sources' field in sourcemap.");const r=o.sources;if(0===r.length)return void t("Empty 'sources' field in sourcemap.");const i=this.matchSources(r);if(0!==i.length)return i;t(`${r.map(this.displaySource).join(", ")} not in the tracked files.`)}matchSources(e){let t=[];const n=new Set;for(const s of e){const e=this.getFilename(s);if(n.has(e))continue;n.add(e);const o=this.trackedFilenames.get(e);o&&(t=t.concat(o))}return t}rawTrackedFilesList(){let e=[];return this.trackedFilenames.forEach((t=>{e=e.concat(t)})),e}getFilename(e){let t=e.lastIndexOf("/");-1===t?t=0:t++;let n=e.lastIndexOf("?");return(-1===n||n<=t)&&(n=e.length),e.substring(t,n)}}const xt=async e=>{const t=await e.getRemotes(!0);if(0===t.length)throw new Error("No git remotes available");const n=await Rt(e);for(const e of t)if(e.name===n)return z(e.refs.push);return z(t[0].refs.push)},Rt=async e=>{try{return(await e.getConfig("clone.defaultRemoteName"))?.value??"origin"}catch(e){return"origin"}},Pt=async e=>e.revparse("HEAD"),Mt=async e=>(await e.raw("ls-files")).split(/\r\n|\r|\n/),Tt=async e=>e.branch(),jt=async e=>e.show(["-s","--format=%s"]),Ot=async e=>e.show(["-s","--format=%an,%ae,%aI,%cn,%ce,%cI"]),zt="datadog-git-plugin",Nt=e=>{const{options:t,context:n}=e,s=n.getLogger(zt),r=s.time("get git information",{start:!1}),i=async e=>{try{const t=await(async e=>{const t=[Pt(e),Tt(e),jt(e),Ot(e),Mt(e),xt(e)],[n,s,o,r,i,a]=await Promise.all(t),[u,p,c,l,d,m]=r.split(",").map((e=>e.trim()));return{commit:{author:{name:u,email:p,date:c},committer:{name:l,email:d,date:m},message:o.trim(),hash:n},hash:n,branch:s.current,remote:a.trim(),trackedFilesMatcher:new Dt(i)}})(await(async e=>{const t={baseDir:e||process.cwd(),binary:"git",maxConcurrentProcesses:3};try{const e=g.simpleGit(t),n=await e.revparse("--show-toplevel");t.baseDir=n}catch{}return g.simpleGit(t)})(o.dirname(e)));n.git=t,r.end(),await n.asyncHook("git",n.git)}catch(e){s.error(`Could not get git information: ${e.message}`)}};return[{name:zt,enforce:"pre",buildRoot(e){if(T(t))try{r.resume();const t=((e,t)=>{let n,s=nt(process.cwd(),e);for(;!n;){const e=o.resolve(s,t);if(J(e)&&(n=e),s=s.split(o.sep).slice(0,-1).join(o.sep),[o.sep,""].includes(s))break}return n})(e,".git");if(!t)return void s.warn("No .git directory found, skipping git plugin.");n.queue(i(t))}catch(e){s.error(`Could not get git information: ${e.message}`)}}}]},At="datadog-injection-plugin",It=/^https?:\/\//,Ct=async(e,t=process.cwd())=>(e=>i.readFile(e,{encoding:"utf-8"}))(nt(t,e)),Ft=async(e,t,n=process.cwd())=>{let s;const o=await(async e=>"function"==typeof e.value?e.value():e.value)(e);try{if("file"===e.type)s=o.match(It)?await(async(e,t=5e3)=>{let n;return Promise.race([D({retries:2,minTimeout:100,url:e}).finally((()=>{t&&clearTimeout(n)})),new Promise(((e,s)=>{n=setTimeout((()=>{s(new Error("Timeout"))}),t)}))])})(o):await Ct(o,n);else{if("code"!==e.type)throw new Error(`Invalid item type "${e.type}", only accepts "code" or "file".`);s=o}}catch(r){const i=`${e.type} - ${O(o)}`;e.fallback?(t.info(`Fallback for "${i}": ${r.toString()}`),s=await Ft(e.fallback,t,n)):t.warn(`Failed "${i}": ${r.toString()}`)}return s},Lt=e=>{if(0===e.size)return"";return`// begin injection by Datadog build plugins\n${Array.from(e.values()).map((e=>`(() => {${e}})();`)).join("\n\n")}\n// end injection by Datadog build plugins`},_t=async(e,t,n,s=process.cwd())=>{const o=await(async(e,t,n=process.cwd())=>{const s=new Map;for(const[o,r]of e.entries()){const e=await Ft(r,t,n);e&&s.set(o,{value:e,position:r.position||Ke.BEFORE})}return s})(t,e,s);for(const[e,t]of o.entries())n[t.position].set(e,t.value)},qt=a.promises,Kt=(e,t,n)=>({setup(s){const{onStart:r,onResolve:i,onLoad:u,onEnd:p,esbuild:c,initialOptions:l}=s,d=[],m=`${t.bundler.name}.${Ke.MIDDLE}.${v}.js`,f=a.realpathSync(h.tmpdir()),g=o.resolve(f,m),y=new RegExp(`${m}$`),b=l.inject;l.inject=b?[...b]:[],l.inject.push(g),r((async()=>{d.push(...await tt(s,t,e)),s.initialOptions.inject=b;try{await U(g,"")}catch(t){e.error(`Could not create the files: ${t.message}`)}})),i({filter:y},(async e=>({path:e.path,namespace:At}))),u({filter:y,namespace:At},(async()=>({contents:Lt(n[Ke.MIDDLE])||" ",resolveDir:t.buildRoot,loader:"js"}))),p((async s=>{if(!s.metafile)return void e.warn("Missing metafile from build result.");const o=Lt(n[Ke.BEFORE]),r=Lt(n[Ke.AFTER]);if(!o&&!r)return;const i=Object.entries(s.metafile.outputs).map((([e,n])=>{const s=n.entryPoint;if(!s)return;return d.find((e=>e.resolved.endsWith(s)))?nt(t.buildRoot,e):void 0})).filter(Boolean).map((async t=>{try{const e=await qt.readFile(t,"utf-8"),n=await c.transform(e,{loader:"default",banner:o,footer:r});await qt.writeFile(t,n.code)}catch(n){if(!(e=>e instanceof Error&&"code"in e)(n)||"ENOENT"!==n.code)throw n;e.warn(`Could not inject content in ${t}: ${n}`)}}));await Promise.all(i)}))}}),Ht=v,Bt="?inject-proxy",Wt=e=>({banner:t=>t.isEntry?Lt(e[Ke.BEFORE]):"",async resolveId(t,n,s){if(P(t))return{id:t,moduleSideEffects:!0};if(s.isEntry&&Lt(e[Ke.MIDDLE])){const e=await this.resolve(t,n,s);if(!e||e.external)return e;return(await this.load(e)).moduleSideEffects=!0,`${e.id}${Bt}`}return null},load(t){if(P(t))return Lt(e[Ke.MIDDLE]);if(t.endsWith(Bt)){const e=t.slice(0,-13),n=this.getModuleInfo(e);let s=`import ${JSON.stringify(Ht)};\nexport * from ${JSON.stringify(e)};`;return n?.hasDefaultExport&&(s+=`export { default } from ${JSON.stringify(e)};`),s}return null},footer:t=>t.isEntry?Lt(e[Ke.AFTER]):""}),Ut=(e,t,n,s,r)=>i=>{const u=new WeakMap,p=e.sources.ConcatSource,c=n.bundler.name,l=o.resolve(n.bundler.outDir,`${c}.${Ke.MIDDLE}.${v}.js`);G(l,"");i.hooks.shutdown.tap(At,(()=>{var e;e=l,a.rmSync(e,{force:!0,maxRetries:3,recursive:!0})}));i.hooks.beforeRun.tapPromise(At,(async()=>{await _t(t,s,r,n.buildRoot)})),i.hooks.compilation.tap(At,(t=>{const n=e.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS;t.hooks.processAssets.tap({name:At,stage:n},(()=>{const e=Lt(r[Ke.BEFORE]),n=Lt(r[Ke.AFTER]);for(const s of t.chunks)if(s.canBeInitial())for(const o of s.files)t.updateAsset(o,(t=>{const s=u.get(t);if(!s||s.banner!==e||s.footer!==n){const s=new p(e,"\n",t,"\n",n);return u.set(t,{source:s,banner:e,footer:n}),s}return s.source}))}))}));const d=(e=>{const n={import:[l]},s=e=>{for(const[n,s]of Object.entries(e))"object"==typeof s?(s.import=s.import||[],s.import.unshift(l)):"string"==typeof s?e[n]=[l,s]:Array.isArray(s)?s.unshift(l):t.error("Invalid entry type: "+typeof s)};return e?"function"==typeof e?async()=>{const t=await e();return s(t),t}:"object"!=typeof e?"string"==typeof e?[n,e]:(t.error("Invalid entry type: "+typeof e),e):(s(e),e):{ddHelper:n}})(i.options.entry);i.options.entry=d},Gt=e=>{const{bundler:t,context:n}=e,s=n.getLogger(At),o=new Map,r={[Ke.BEFORE]:new Map,[Ke.MIDDLE]:new Map,[Ke.AFTER]:new Map};n.inject=e=>{o.set(`${Date.now()}.${performance.now()}.${++N}`,e)};const i={name:At,enforce:"post",esbuild:Kt(s,n,r),webpack:Ut(t,s,n,o,r),rspack:Ut(t,s,n,o,r),rollup:Wt(r),vite:{...Wt(r),enforce:"pre"}};var a;return a=n.bundler.name,["rspack","webpack"].includes(a)?i.load={filter:{id:$},handler:()=>({code:Lt(r[Ke.MIDDLE])})}:i.buildStart=async()=>{await _t(s,o,r,n.buildRoot)},[i]},Jt="datadog-true-end-plugin",Vt=e=>{const{context:t}=e,n=async()=>{await t.asyncHook("asyncTrueEnd")},s=()=>{t.hook("syncTrueEnd")},o=async()=>{s(),await n()},r=e=>{e.hooks.shutdown.tapPromise(Jt,o)},i={async writeBundle(){},async closeBundle(){await o()}};return[{name:Jt,enforce:"post",webpack:r,esbuild:{setup(e){e.onEnd((async()=>{await n()})),e.onDispose((()=>{s()}))}},vite:i,rollup:i,rspack:r}]},Yt={[ce]:Ne};var Qt="3.0.0-dev.0";const Xt=(({bundler:n,version:s})=>{const o=Date.now();return e.createUnplugin(((e,r)=>{const i=((e={})=>{const t={site:w("SITE")||e.auth?.site||"datadoghq.com"};return Object.defineProperty(t,"apiKey",{value:w("API_KEY")||e.auth?.apiKey,enumerable:!1}),Object.defineProperty(t,"appKey",{value:w("APP_KEY")||e.auth?.appKey,enumerable:!1}),{enableGit:!0,logLevel:"warn",metadata:{},...e,auth:t}})(e);"esbuild"===r.framework&&(r.esbuildHostName=S);const a=process.env.BUILD_PLUGINS_ENV||"production",u=k.includes(a)?a:"development",p=n.rspackVersion||n.version||n.VERSION,c=r.framework,l={bundler:{name:c,version:p},env:u,metadata:i.metadata||{},packageName:`@datadog/${c}-plugin`,version:s},d={errors:[],logs:[],queue:[],timings:[],warnings:[]},m=(({start:e,options:t,data:n,stores:s})=>{const o=process.cwd(),r={errors:s.errors,warnings:s.warnings,logs:s.logs,metadata:n.metadata,timings:s.timings,bundler:n.bundler};return{auth:t.auth,pluginNames:[],bundler:{...r.bundler,outDir:o},build:r,buildRoot:o,env:n.env,getLogger:L(n,s,t.logLevel),asyncHook:()=>{throw new Error("AsyncHook function called before it was initialized.")},hook:()=>{throw new Error("Hook function called before it was initialized.")},inject:()=>{throw new Error("Inject function called before it was initialized.")},plugins:[],queue:()=>{throw new Error("Queue function called before it was initialized.")},sendLog:x(n),start:e,version:n.version}})({start:o,options:i,data:l,stores:d}),f=m.getLogger("factory").time("Plugins initialization",{start:o});m.pluginNames.push(S);const g=[];g.push(["analytics",Xe],["async-queue",et],["build-report",ht],["bundler-report",kt],["custom-hooks",Et],["git",Nt],["injection",Gt],["true-end",Vt]),i.customPlugins&&g.push(["custom",i.customPlugins]),g.push(["error-tracking",ue],["metrics",Ae],["output",qe],["rum",Ye]);for(const[e,t]of g)m.plugins.push(...K(m,t,e)({bundler:n,context:m,options:i,data:l,stores:d}));m.pluginNames.push(...m.plugins.map((e=>e.name)));const h=new Set(m.pluginNames.filter((e=>m.pluginNames.filter((t=>t===e)).length>1)));if(h.size>0)throw new Error(`Duplicate plugin names: ${t.bold.red(Array.from(h).join(", "))}`);return m.hook("init",m),f.end(),m.plugins}))})({bundler:b,version:Qt}).vite,Zt=Qt,en=Yt;exports.datadogVitePlugin=Xt,exports.helpers=en,exports.version=Zt;
5
5
  //# sourceMappingURL=index.js.map