@datadog/webpack-plugin 0.0.13-7 → 0.0.13-9
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 +2 -2
- package/dist/src/index.js +1 -2
- 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 +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ declare const helpers: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
declare const datadogWebpackPlugin: (options: src.
|
|
62
|
+
declare const datadogWebpackPlugin: (options: src.WebpackPluginOptions) => webpack.WebpackPluginInstance;
|
|
63
63
|
|
|
64
|
-
export { type
|
|
64
|
+
export { type types as TelemetryTypes, type Options as WebpackPluginOptions, datadogWebpackPlugin, helpers };
|
|
65
65
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.js
CHANGED
|
@@ -36,7 +36,7 @@ function _interopNamespaceDefault(e) {
|
|
|
36
36
|
var querystring__namespace = /*#__PURE__*/_interopNamespaceDefault(querystring);
|
|
37
37
|
|
|
38
38
|
const CONFIG_KEY = "telemetry";
|
|
39
|
-
const PLUGIN_NAME =
|
|
39
|
+
const PLUGIN_NAME = `datadog-${CONFIG_KEY}-plugin`;
|
|
40
40
|
|
|
41
41
|
const filterTreeMetrics = (metric) => (
|
|
42
42
|
// Remove tree metrics because way too verbose
|
|
@@ -6571,7 +6571,6 @@ const getPlugins = (opt) => {
|
|
|
6571
6571
|
return [
|
|
6572
6572
|
{
|
|
6573
6573
|
name: PLUGIN_NAME,
|
|
6574
|
-
enforce: "pre",
|
|
6575
6574
|
esbuild: getEsbuildPlugin$1(opt),
|
|
6576
6575
|
webpack: getWebpackPlugin$1(opt)
|
|
6577
6576
|
}
|