@datadog/webpack-plugin 2.0.2-dev-2 → 2.0.2-dev-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 +5 -4
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +6 -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 datadogWebpackPlugin: (options: src.WebpackPluginOptions) => webpack.WebpackPluginInstance;
|
|
84
84
|
|
|
85
|
-
export { type types$1 as RumTypes, type types as TelemetryTypes, type Options as WebpackPluginOptions, datadogWebpackPlugin,
|
|
85
|
+
export { type types$1 as RumTypes, type types as TelemetryTypes, type Options as WebpackPluginOptions, datadogWebpackPlugin, helpers };
|
|
86
86
|
//# 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$l = require('fs');
|
|
6
4
|
var require$$0 = require('tty');
|
|
7
5
|
var require$$1 = require('util');
|
|
@@ -30144,7 +30142,7 @@ const buildPluginFactory = ({
|
|
|
30144
30142
|
|
|
30145
30143
|
var name = "@datadog/webpack-plugin";
|
|
30146
30144
|
var packageManager = "yarn@4.0.2";
|
|
30147
|
-
var version = "2.0.2-dev-
|
|
30145
|
+
var version = "2.0.2-dev-3";
|
|
30148
30146
|
var license = "MIT";
|
|
30149
30147
|
var author = "Datadog";
|
|
30150
30148
|
var description = "Datadog Webpack Plugin";
|
|
@@ -30234,8 +30232,11 @@ var pkg = {
|
|
|
30234
30232
|
const datadogWebpackPlugin = buildPluginFactory({
|
|
30235
30233
|
version: pkg.version
|
|
30236
30234
|
}).webpack;
|
|
30235
|
+
module.exports = {
|
|
30236
|
+
helpers,
|
|
30237
|
+
datadogWebpackPlugin
|
|
30238
|
+
};
|
|
30237
30239
|
|
|
30238
30240
|
exports.datadogWebpackPlugin = datadogWebpackPlugin;
|
|
30239
|
-
exports.default = datadogWebpackPlugin;
|
|
30240
30241
|
exports.helpers = helpers;
|
|
30241
30242
|
//# sourceMappingURL=index.js.map
|