cursor-quality-suite 1.0.0 → 1.0.1
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 +0 -1
- package/bin/cli.js +1 -2
- package/package.json +1 -2
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ const fs = require('fs');
|
|
|
10
10
|
const path = require('path');
|
|
11
11
|
const readline = require('readline');
|
|
12
12
|
|
|
13
|
-
const VERSION = '1.0.
|
|
13
|
+
const VERSION = '1.0.1';
|
|
14
14
|
const CURSOR_DIR = '.cursor';
|
|
15
15
|
const COMMANDS_DIR = 'commands';
|
|
16
16
|
|
|
@@ -300,4 +300,3 @@ switch (command) {
|
|
|
300
300
|
console.log('Run "npx cursor-quality-suite help" for usage');
|
|
301
301
|
process.exit(1);
|
|
302
302
|
}
|
|
303
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cursor-quality-suite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Code Quality & Testing Commands for Cursor IDE - Test Generation, Mutation Testing, Architecture",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cursor-quality-suite": "./bin/cli.js",
|
|
@@ -33,4 +33,3 @@
|
|
|
33
33
|
"commands/"
|
|
34
34
|
]
|
|
35
35
|
}
|
|
36
|
-
|