@datadog/esbuild-plugin 2.0.2-dev → 2.0.2-dev-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.js +4 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +2 -2
- package/dist/src/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -82,5 +82,5 @@ declare const helpers: {
|
|
|
82
82
|
|
|
83
83
|
declare const datadogEsbuildPlugin: (options: src.EsbuildPluginOptions) => esbuild.Plugin;
|
|
84
84
|
|
|
85
|
-
export { type Options as EsbuildPluginOptions, type types$1 as RumTypes, type types as TelemetryTypes, datadogEsbuildPlugin, helpers };
|
|
85
|
+
export { type Options as EsbuildPluginOptions, type types$1 as RumTypes, type types as TelemetryTypes, datadogEsbuildPlugin, datadogEsbuildPlugin as default, helpers };
|
|
86
86
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var fs$l = require('fs');
|
|
4
6
|
var require$$0 = require('tty');
|
|
5
7
|
var require$$1 = require('util');
|
|
@@ -30142,7 +30144,7 @@ const buildPluginFactory = ({
|
|
|
30142
30144
|
|
|
30143
30145
|
var name = "@datadog/esbuild-plugin";
|
|
30144
30146
|
var packageManager = "yarn@4.0.2";
|
|
30145
|
-
var version = "2.0.2-dev";
|
|
30147
|
+
var version = "2.0.2-dev-2";
|
|
30146
30148
|
var license = "MIT";
|
|
30147
30149
|
var author = "Datadog";
|
|
30148
30150
|
var description = "Datadog ESBuild Plugin";
|
|
@@ -30234,5 +30236,6 @@ const datadogEsbuildPlugin = buildPluginFactory({
|
|
|
30234
30236
|
}).esbuild;
|
|
30235
30237
|
|
|
30236
30238
|
exports.datadogEsbuildPlugin = datadogEsbuildPlugin;
|
|
30239
|
+
exports.default = datadogEsbuildPlugin;
|
|
30237
30240
|
exports.helpers = helpers;
|
|
30238
30241
|
//# sourceMappingURL=index.js.map
|