@datadog/webpack-plugin 2.0.1-0 → 2.0.1

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.
@@ -1,5 +1,4 @@
1
1
  import * as webpack from 'webpack';
2
- import * as src from 'src';
3
2
 
4
3
  type LogLevel = 'debug' | 'warn' | 'error' | 'none';
5
4
  interface GetPluginsOptions {
@@ -60,7 +59,7 @@ declare const helpers: {
60
59
  };
61
60
  };
62
61
 
63
- declare const datadogWebpackPlugin: (options: src.WebpackPluginOptions) => webpack.WebpackPluginInstance;
62
+ declare const datadogWebpackPlugin: (options: Options) => webpack.WebpackPluginInstance;
64
63
 
65
64
  export { type types as TelemetryTypes, type Options as WebpackPluginOptions, datadogWebpackPlugin, helpers };
66
65
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datadog/webpack-plugin",
3
3
  "packageManager": "yarn@4.0.2",
4
- "version": "2.0.1-0",
4
+ "version": "2.0.1",
5
5
  "license": "MIT",
6
6
  "author": "Datadog",
7
7
  "description": "Datadog Webpack Plugin",
@@ -71,6 +71,5 @@
71
71
  "peerDependencies": {
72
72
  "webpack": ">= 4.x < 6.x"
73
73
  },
74
- "stableVersion": "2.0.0",
75
74
  "types": "./dist/src/index.d.ts"
76
75
  }