@ruan-cat/vercel-deploy-tool 0.8.9 → 0.8.11
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 +4 -4
- package/src/config.ts +0 -2
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruan-cat/vercel-deploy-tool",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.11",
|
|
4
4
|
"description": "阮喵喵自用的vercel部署工具,用于实现复杂项目的部署。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
7
7
|
"types": "./src/index.ts",
|
|
8
|
-
"homepage": "https://github.com/ruan-cat/
|
|
8
|
+
"homepage": "https://github.com/ruan-cat/monorepo/tree/main/packages/vercel-deploy-tool",
|
|
9
9
|
"bugs": {
|
|
10
|
-
"url": "https://github.com/ruan-cat/
|
|
10
|
+
"url": "https://github.com/ruan-cat/monorepo/issues"
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"rimraf": "^6.0.1",
|
|
52
52
|
"shx": "^0.3.4",
|
|
53
53
|
"vercel": "^41.3.0",
|
|
54
|
-
"@ruan-cat/utils": "^4.2.
|
|
54
|
+
"@ruan-cat/utils": "^4.2.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/gulp": "^4.0.17",
|
package/src/config.ts
CHANGED
|
@@ -48,8 +48,6 @@ export interface WithUserCommands extends Base {
|
|
|
48
48
|
* FIXME: 这个字段无法实现类型声明,缺失类型提示了。
|
|
49
49
|
* TODO: 实现对 targetCWD 的读取,并实现类型声明。
|
|
50
50
|
*
|
|
51
|
-
* pnpm -F @ruan-cat-vercel-monorepo-test/docs-01-star build:docs
|
|
52
|
-
*
|
|
53
51
|
* @example pnpm -C=./packages/docs-01-star build:docs
|
|
54
52
|
* @example pnpm -C=./packages/monorepo-5 build:docs
|
|
55
53
|
*/
|