@datadog/vite-plugin 2.3.1-dev-9 → 2.3.1-dev-12

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.
@@ -1,5 +1,5 @@
1
- import * as vite from 'vite';
2
1
  import * as src from 'src';
2
+ import vite from 'vite';
3
3
  import { UnpluginOptions } from 'unplugin';
4
4
 
5
5
  declare const CONFIG_KEY$1: "rum";
@@ -77,12 +77,15 @@ type BuildReport = {
77
77
  duration?: number;
78
78
  writeDuration?: number;
79
79
  };
80
+ type BundlerFullName = 'webpack5' | 'webpack4' | 'esbuild' | 'vite' | 'rollup';
81
+ type BundlerName = 'webpack' | 'esbuild' | 'vite' | 'rollup';
80
82
  type BundlerReport = {
81
- name: string;
82
- fullName: string;
83
+ name: BundlerName;
84
+ fullName: BundlerFullName;
83
85
  outDir: string;
84
86
  rawConfig?: any;
85
87
  variant?: string;
88
+ version: string;
86
89
  };
87
90
  type ToInjectItem = {
88
91
  type: 'file' | 'code';