@zhin.js/adapter-email 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +12 -9
package/CHANGELOG.md ADDED
@@ -0,0 +1,35 @@
1
+ # @zhin.js/adapter-email
2
+
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 547028f: fix: 优化包结构,优化客户端支持
8
+ - Updated dependencies [547028f]
9
+ - @zhin.js/types@1.0.5
10
+ - zhin.js@1.0.14
11
+
12
+ ## 0.1.3
13
+
14
+ ### Patch Changes
15
+
16
+ - c490260: fix: 更新脚手架结构,优化包依赖
17
+ - zhin.js@1.0.9
18
+
19
+ ## 0.1.2
20
+
21
+ ### Patch Changes
22
+
23
+ - 551c4d2: fix: 插件支持配置文件读取,优化 test 用例
24
+ - Updated dependencies [551c4d2]
25
+ - @zhin.js/types@1.0.3
26
+ - zhin.js@1.0.8
27
+
28
+ ## 0.1.1
29
+
30
+ ### Patch Changes
31
+
32
+ - 89bc676: fix: 类型反射优化
33
+ - Updated dependencies [89bc676]
34
+ - @zhin.js/types@1.0.2
35
+ - zhin.js@1.0.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhin.js/adapter-email",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "Email adapter for zhin.js",
6
6
  "main": "lib/index.js",
@@ -13,8 +13,8 @@
13
13
  "nodemailer": "^6.9.8"
14
14
  },
15
15
  "peerDependencies": {
16
- "@zhin.js/types": "^1.0.3",
17
- "zhin.js": "^1.0.9"
16
+ "@zhin.js/types": "^1.0.5",
17
+ "zhin.js": "^1.0.14"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/mailparser": "^3.4.6",
@@ -32,16 +32,19 @@
32
32
  "author": "",
33
33
  "license": "MIT",
34
34
  "repository": {
35
+ "url": "git+https://github.com/zhinjs/zhin.git",
35
36
  "type": "git",
36
- "url": "https://github.com/zhinjs/zhin-next",
37
- "directory": "adapters/email"
37
+ "directory": "plugins/adapters/email"
38
38
  },
39
39
  "files": [
40
- "lib"
40
+ "lib",
41
+ "node",
42
+ "README.md",
43
+ "CHANGELOG.md"
41
44
  ],
42
45
  "scripts": {
43
- "build": "tsc",
44
- "dev": "tsc --watch",
45
- "clean": "rm -rf lib"
46
+ "build": "pnpm build:node",
47
+ "clean": "rm -rf lib",
48
+ "build:node": "tsc"
46
49
  }
47
50
  }