mailtrap-plugin 1.1.1 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailtrap-plugin",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Mailtrap plugin to Flow requests",
5
5
  "main": "./dist/node-bundle.js",
6
6
  "browser": "./dist/browser-bundle.js",
@@ -35,13 +35,10 @@ const nodeConfig = {
35
35
  output: {
36
36
  ...commonConfig.output,
37
37
  filename: "node-bundle.js",
38
- library: {
39
- type: "module", // Output as an ES module
40
- },
38
+ module: true,
41
39
  },
42
40
  // Tells webpack to externalize node_modules
43
41
  // (typically you don't bundle them for Node)
44
- externalsPresets: { node: true },
45
42
  experiments: {
46
43
  outputModule: true, // Enable experimental output module support
47
44
  },