@mintlify/cli 4.0.7 → 4.0.8

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/CONTRIBUTING.md +1 -1
  2. package/package.json +10 -7
package/CONTRIBUTING.md CHANGED
@@ -33,7 +33,7 @@ Here's how to publish new client changes to the CLI:
33
33
  - [ ] confirm new CLI behavior is observed
34
34
  ```
35
35
 
36
- 4. Start a new `Upload zip` workflow. **BE SURE TO SPECIFY YOUR PR BRANCH** and the new client version number.
36
+ 4. Start a new `Upload Standalone zip` workflow. **BE SURE TO SPECIFY YOUR PR BRANCH** and the new client version number.
37
37
  <img width="800" alt="Screenshot 2023-04-24 at 10 03 15 PM" src="https://user-images.githubusercontent.com/63772591/234178961-ab33c765-8b42-41e8-942f-f0a929d7abbf.png">
38
38
  5. Execute test plan.
39
39
  6. Merge PR.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/cli",
3
- "version": "4.0.7",
3
+ "version": "4.0.8",
4
4
  "description": "The Mintlify CLI",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -28,6 +28,8 @@
28
28
  "dev": "yarn build && node bin/index.js dev",
29
29
  "prepare": "npm run build",
30
30
  "build": "tsc",
31
+ "clean:build": "rimraf bin",
32
+ "clean:all": "rimraf node_modules .eslintcache && yarn clean:build",
31
33
  "watch": "tsc --watch",
32
34
  "lint": "eslint src --cache",
33
35
  "test": "jest",
@@ -49,11 +51,11 @@
49
51
  },
50
52
  "dependencies": {
51
53
  "@apidevtools/swagger-parser": "^10.1.0",
52
- "@mintlify/link-rot": "3.0.36",
53
- "@mintlify/models": "0.0.32",
54
- "@mintlify/prebuild": "1.0.36",
55
- "@mintlify/previewing": "4.0.7",
56
- "@mintlify/validation": "0.1.66",
54
+ "@mintlify/link-rot": "3.0.37",
55
+ "@mintlify/models": "0.0.33",
56
+ "@mintlify/prebuild": "1.0.37",
57
+ "@mintlify/previewing": "4.0.8",
58
+ "@mintlify/validation": "0.1.67",
57
59
  "axios": "^1.4.0",
58
60
  "chalk": "^5.2.0",
59
61
  "detect-port": "^1.5.1",
@@ -93,9 +95,10 @@
93
95
  "eslint-plugin-unused-imports": "2.x",
94
96
  "jest": "^29.4.3",
95
97
  "prettier": "2.x",
98
+ "rimraf": "^5.0.1",
96
99
  "ts-jest": "^29.0.5",
97
100
  "ts-jest-resolver": "^2.0.1",
98
101
  "typescript": "^4.9.5"
99
102
  },
100
- "gitHead": "6c9831bef013e0a27a1de2671760ea0ac3a804e4"
103
+ "gitHead": "1f3285350a41f589349743f2aeb390cb05be0536"
101
104
  }