cursor-doctor 1.1.1 → 1.1.3
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 +1 -1
- package/package.json +1 -1
- package/src/cli.js +3 -2
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ cursor-doctor fix --dry-run
|
|
|
74
74
|
cursor-doctor activate <key>
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
**Get a Pro key:** [nedcodes.gumroad.com/l/cursor-doctor](https://nedcodes.gumroad.com/l/cursor-doctor)
|
|
77
|
+
**Get a Pro key:** [nedcodes.gumroad.com/l/cursor-doctor-pro](https://nedcodes.gumroad.com/l/cursor-doctor-pro)
|
|
78
78
|
|
|
79
79
|
## Why?
|
|
80
80
|
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ const { autoFix } = require('./autofix');
|
|
|
11
11
|
const { isLicensed, activateLicense } = require('./license');
|
|
12
12
|
const { fixProject } = require('./fix');
|
|
13
13
|
|
|
14
|
-
const VERSION = '1.1.
|
|
14
|
+
const VERSION = '1.1.3';
|
|
15
15
|
|
|
16
16
|
const RED = '\x1b[31m';
|
|
17
17
|
const YELLOW = '\x1b[33m';
|
|
@@ -131,7 +131,8 @@ async function main() {
|
|
|
131
131
|
|
|
132
132
|
var fixable = report.checks.filter(function(c) { return c.status === 'fail' || c.status === 'warn'; }).length;
|
|
133
133
|
if (fixable > 0) {
|
|
134
|
-
console.log(' ' + CYAN + fixable + ' issue(s) found.' + RESET + ' Run ' + CYAN + 'cursor-doctor fix' + RESET + ' to auto-repair.
|
|
134
|
+
console.log(' ' + CYAN + fixable + ' issue(s) found.' + RESET + ' Run ' + CYAN + 'cursor-doctor fix' + RESET + ' to auto-repair.');
|
|
135
|
+
console.log(' ' + DIM + 'Pro ($9 one-time) ' + PURCHASE_URL + RESET);
|
|
135
136
|
console.log();
|
|
136
137
|
}
|
|
137
138
|
|