ares-ssh-deploy 1.0.1 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # ares-ssh-deploy
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix bug
8
+
3
9
  ## 1.0.1
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -172,7 +172,7 @@ TARGET_HEALTH_FILE=/usr/share/nginx/html/health/index.html
172
172
  TARGET_HEALTH_HIDDEN_FILE=/usr/share/nginx/html/health/hide/index.html
173
173
  ```
174
174
 
175
- #### 示例代码 `.env.lwindows-server`
175
+ #### 示例代码 `.env.windows-server`
176
176
  ```env
177
177
  # 日志级别
178
178
  LOG_LEVEL=info
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "ares-ssh-deploy",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "ssh deploy tools",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/types/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/types/index.d.ts",
10
+ "types": "./dist/index.d.ts",
11
11
  "import": "./dist/index.mjs",
12
12
  "require": "./dist/index.cjs"
13
13
  },