@datadog/esbuild-plugin 2.3.2 → 2.3.3-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/dist/src/index.d.ts +3 -14
- package/dist/src/index.js +2787 -36244
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +2789 -36225
- package/dist/src/index.mjs.map +1 -1
- package/dist/src/rspack/loaders/load.js +34 -26
- package/dist/src/rspack/loaders/load.mjs +30 -12
- package/dist/src/rspack/loaders/transform.js +20 -22
- package/dist/src/rspack/loaders/transform.mjs +19 -11
- package/dist/src/webpack/loaders/load.d.mts +3 -1
- package/dist/src/webpack/loaders/load.d.ts +3 -1
- package/dist/src/webpack/loaders/load.js +22 -6
- package/dist/src/webpack/loaders/load.mjs +17 -5
- package/dist/src/webpack/loaders/transform.js +24 -12
- package/dist/src/webpack/loaders/transform.mjs +19 -11
- package/package.json +18 -6
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as src from 'src';
|
|
2
2
|
import esbuild from 'esbuild';
|
|
3
|
+
import { UnpluginOptions } from 'unplugin';
|
|
3
4
|
|
|
4
5
|
declare const CONFIG_KEY$1: "rum";
|
|
5
6
|
|
|
@@ -142,7 +143,7 @@ type TelemetryOptions = {
|
|
|
142
143
|
timestamp?: number;
|
|
143
144
|
};
|
|
144
145
|
|
|
145
|
-
declare const datadogEsbuildPlugin: (options:
|
|
146
|
+
declare const datadogEsbuildPlugin: (options: src.EsbuildPluginOptions) => esbuild.Plugin;
|
|
146
147
|
|
|
147
148
|
declare const version: string;
|
|
148
149
|
declare const helpers: {
|
|
@@ -152,16 +153,4 @@ declare const helpers: {
|
|
|
152
153
|
};
|
|
153
154
|
|
|
154
155
|
export { type Options as EsbuildPluginOptions, type types$1 as RumTypes, type types as TelemetryTypes, datadogEsbuildPlugin, helpers, version };
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
if (typeof module !== 'undefined') {
|
|
158
|
-
module.exports = {
|
|
159
|
-
EsbuildPluginOptions,
|
|
160
|
-
RumTypes,
|
|
161
|
-
TelemetryTypes,
|
|
162
|
-
datadogEsbuildPlugin,
|
|
163
|
-
helpers,
|
|
164
|
-
version
|
|
165
|
-
};
|
|
166
|
-
}
|
|
167
156
|
//# sourceMappingURL=index.d.ts.map
|