@datadog/esbuild-plugin 0.0.13-1 → 0.0.13-3
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 +0 -4
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +1 -2
- package/dist/src/index.mjs.map +1 -1
- package/package.json +5 -7
package/dist/src/index.d.ts
CHANGED
|
@@ -44,5 +44,5 @@ interface Options extends GetPluginsOptions {
|
|
|
44
44
|
|
|
45
45
|
declare const datadogEsbuildPlugin: (options: Options) => esbuild.Plugin;
|
|
46
46
|
|
|
47
|
-
export {
|
|
47
|
+
export { type Options as EsbuildPluginOptions, datadogEsbuildPlugin };
|
|
48
48
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var fs$j = require('fs');
|
|
6
4
|
var require$$0 = require('constants');
|
|
7
5
|
var require$$0$1 = require('stream');
|
|
@@ -18160,8 +18158,6 @@ const buildPluginFactory = () => {
|
|
|
18160
18158
|
};
|
|
18161
18159
|
|
|
18162
18160
|
const datadogEsbuildPlugin = buildPluginFactory().esbuild;
|
|
18163
|
-
module.exports = datadogEsbuildPlugin;
|
|
18164
18161
|
|
|
18165
18162
|
exports.datadogEsbuildPlugin = datadogEsbuildPlugin;
|
|
18166
|
-
exports.default = datadogEsbuildPlugin;
|
|
18167
18163
|
//# sourceMappingURL=index.js.map
|