aislop 0.5.0 → 0.6.0
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 +4 -4
- package/dist/cli.js +1748 -127
- package/dist/index.js +471 -128
- package/dist/{json-BScQXSOX.js → json-DcE9soYJ.js} +1 -1
- package/dist/{version-CxBRws3M.js → version-C2lM_2fE.js} +1 -1
- package/package.json +4 -4
- package/scripts/postinstall-tools.mjs +2 -2
|
@@ -33,7 +33,7 @@ const getEngineLabel = (engine) => ENGINE_INFO[engine].label;
|
|
|
33
33
|
* Application version — injected at build time by tsdown from package.json.
|
|
34
34
|
* The fallback should always match the "version" field in package.json.
|
|
35
35
|
*/
|
|
36
|
-
const APP_VERSION = "0.
|
|
36
|
+
const APP_VERSION = "0.6.0";
|
|
37
37
|
|
|
38
38
|
//#endregion
|
|
39
39
|
export { ENGINE_INFO as n, getEngineLabel as r, APP_VERSION as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aislop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Stop AI slop from shipping. A unified code quality CLI that catches the lazy patterns AI coding tools leave behind.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
],
|
|
48
48
|
"author": "heavykenny",
|
|
49
49
|
"license": "MIT",
|
|
50
|
-
"homepage": "https://github.com/
|
|
50
|
+
"homepage": "https://github.com/scanaislop/aislop#readme",
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/
|
|
53
|
+
"url": "git+https://github.com/scanaislop/aislop.git"
|
|
54
54
|
},
|
|
55
55
|
"bugs": {
|
|
56
|
-
"url": "https://github.com/
|
|
56
|
+
"url": "https://github.com/scanaislop/aislop/issues"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=20"
|
|
@@ -70,8 +70,8 @@ const TOOL_DEFINITIONS = [
|
|
|
70
70
|
const isWindows = process.platform === "win32";
|
|
71
71
|
const withExecutableExtension = (name) => (isWindows ? `${name}.exe` : name);
|
|
72
72
|
|
|
73
|
-
const info = (message) => console.
|
|
74
|
-
const warn = (message) => console.
|
|
73
|
+
const info = (message) => console.error(`[aislop] ${message}`);
|
|
74
|
+
const warn = (message) => console.error(`[aislop] ${message}`);
|
|
75
75
|
|
|
76
76
|
const downloadFile = async (url, destination) => {
|
|
77
77
|
const response = await fetch(url, {
|