mailtrap-plugin 1.1.1 → 1.1.2

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,12 +1,13 @@
1
1
  {
2
2
  "name": "mailtrap-plugin",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Mailtrap plugin to Flow requests",
5
5
  "main": "./dist/node-bundle.js",
6
6
  "browser": "./dist/browser-bundle.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "type": "module",
9
9
  "scripts": {
10
+ "build:deno": "deno bundle -o ./dist/deno-bundle.js ./src/index.ts ",
10
11
  "build": "webpack",
11
12
  "preinstall": "pnpm run build",
12
13
  "start": "tsx src/index.ts",
@@ -35,6 +35,7 @@ const nodeConfig = {
35
35
  output: {
36
36
  ...commonConfig.output,
37
37
  filename: "node-bundle.js",
38
+ module: true,
38
39
  library: {
39
40
  type: "module", // Output as an ES module
40
41
  },