unplugin-dingtalk 1000.0.0 → 1001.0.0

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  - [x] 在钉钉内打开调试链接
9
9
  - [x] 可选注入 [vConsole](https://github.com/Tencent/vConsole) 用于调试 (仅支持 vite )
10
10
  - [x] 可选注入 [chii](https://github.com/liriliri/chii) 用于调试
11
- - [x] 可选打开 [vue-devtools](https://github.com/vuejs/devtools) 用于调试
11
+ - [x] ~~可选打开 [vue-devtools](https://github.com/vuejs/devtools) 用于调试~~ 已移除
12
12
  - [x] 支持调试 `HttpOnly` cookies
13
13
 
14
14
  ![images](https://github.com/zcf0508/unplugin-dingtalk/raw/main/images/Snipaste_2024-05-22_11-25-35.png)
@@ -35,11 +35,6 @@ interface Options {
35
35
  debugCookies?: string[]
36
36
  /** 默认值 `true` */
37
37
  chii?: boolean
38
- vueDevtools?: {
39
- enable?: boolean
40
- host?: string
41
- port?: number
42
- }
43
38
  }
44
39
  ```
45
40
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "unplugin-dingtalk",
3
3
  "type": "module",
4
- "version": "1000.0.0",
4
+ "version": "1001.0.0",
5
5
  "description": "",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/zcf0508/unplugin-dingtalk#readme",
@@ -20,54 +20,18 @@
20
20
  "transform"
21
21
  ],
22
22
  "exports": {
23
- ".": {
24
- "types": "./dist/index.d.ts",
25
- "import": "./dist/index.js",
26
- "require": "./dist/index.cjs"
27
- },
28
- "./astro": {
29
- "types": "./dist/astro.d.ts",
30
- "import": "./dist/astro.js",
31
- "require": "./dist/astro.cjs"
32
- },
33
- "./rspack": {
34
- "types": "./dist/rspack.d.ts",
35
- "import": "./dist/rspack.js",
36
- "require": "./dist/rspack.cjs"
37
- },
38
- "./vite": {
39
- "types": "./dist/vite.d.ts",
40
- "import": "./dist/vite.js",
41
- "require": "./dist/vite.cjs"
42
- },
43
- "./webpack": {
44
- "types": "./dist/webpack.d.ts",
45
- "import": "./dist/webpack.js",
46
- "require": "./dist/webpack.cjs"
47
- },
48
- "./rollup": {
49
- "types": "./dist/rollup.d.ts",
50
- "import": "./dist/rollup.js",
51
- "require": "./dist/rollup.cjs"
52
- },
53
- "./esbuild": {
54
- "types": "./dist/esbuild.d.ts",
55
- "import": "./dist/esbuild.js",
56
- "require": "./dist/esbuild.cjs"
57
- },
58
- "./nuxt": {
59
- "types": "./dist/nuxt.d.ts",
60
- "import": "./dist/nuxt.js",
61
- "require": "./dist/nuxt.cjs"
62
- },
63
- "./types": {
64
- "types": "./dist/types.d.ts",
65
- "import": "./dist/types.js",
66
- "require": "./dist/types.cjs"
67
- },
23
+ ".": "./dist/index.js",
24
+ "./astro": "./dist/astro.js",
25
+ "./rspack": "./dist/rspack.js",
26
+ "./vite": "./dist/vite.js",
27
+ "./webpack": "./dist/webpack.js",
28
+ "./rollup": "./dist/rollup.js",
29
+ "./esbuild": "./dist/esbuild.js",
30
+ "./nuxt": "./dist/nuxt.js",
31
+ "./types": "./dist/types.js",
68
32
  "./*": "./*"
69
33
  },
70
- "main": "dist/index.cjs",
34
+ "main": "dist/index.js",
71
35
  "module": "dist/index.js",
72
36
  "types": "dist/index.d.ts",
73
37
  "typesVersions": {
@@ -137,7 +101,6 @@
137
101
  "bumpp": "^9.2.0",
138
102
  "chalk": "^5.3.0",
139
103
  "eslint": "^8.55.0",
140
- "esno": "^4.0.0",
141
104
  "fast-glob": "^3.3.2",
142
105
  "node-fetch": "^3.3.2",
143
106
  "nodemon": "^3.0.2",
@@ -152,7 +115,6 @@
152
115
  "scripts": {
153
116
  "build": "tsup",
154
117
  "dev": "tsup --watch src",
155
- "build:fix": "esno scripts/postbuild.ts",
156
118
  "lint": "eslint .",
157
119
  "play": "npm -C playground run dev",
158
120
  "release": "bumpp",