uilint 0.2.110 → 0.2.112
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/dist/{chunk-GUL4IJOO.js → chunk-EBTY4AR3.js} +44 -7
- package/dist/chunk-EBTY4AR3.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{init-ui-67QN34BO.js → init-ui-G7NOKQ56.js} +2 -2
- package/dist/{remove-ui-O4B6EYSF.js → remove-ui-4E7MROVY.js} +2 -2
- package/package.json +5 -5
- package/dist/chunk-GUL4IJOO.js.map +0 -1
- /package/dist/{init-ui-67QN34BO.js.map → init-ui-G7NOKQ56.js.map} +0 -0
- /package/dist/{remove-ui-O4B6EYSF.js.map → remove-ui-4E7MROVY.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -5115,7 +5115,7 @@ program.command("update").description("Update existing style guide with new styl
|
|
|
5115
5115
|
});
|
|
5116
5116
|
});
|
|
5117
5117
|
program.command("init").description("Initialize UILint integration").option("--force", "Overwrite existing configuration files").option("--react", "Install React DevTool (non-interactive)").option("--eslint", "Install ESLint rules (non-interactive)").option("--genstyleguide", "Generate styleguide (non-interactive)").option("--skill", "Install Claude skill (non-interactive)").action(async (options) => {
|
|
5118
|
-
const { initUI } = await import("./init-ui-
|
|
5118
|
+
const { initUI } = await import("./init-ui-G7NOKQ56.js");
|
|
5119
5119
|
await initUI({
|
|
5120
5120
|
force: options.force,
|
|
5121
5121
|
react: options.react,
|
|
@@ -5125,7 +5125,7 @@ program.command("init").description("Initialize UILint integration").option("--f
|
|
|
5125
5125
|
});
|
|
5126
5126
|
});
|
|
5127
5127
|
program.command("remove").description("Remove UILint components from your project").option("--dry-run", "Preview changes without removing anything").option("-y, --yes", "Skip confirmation prompt").action(async (options) => {
|
|
5128
|
-
const { removeUI } = await import("./remove-ui-
|
|
5128
|
+
const { removeUI } = await import("./remove-ui-4E7MROVY.js");
|
|
5129
5129
|
await removeUI({ dryRun: options.dryRun, yes: options.yes });
|
|
5130
5130
|
});
|
|
5131
5131
|
program.command("serve").description("Start WebSocket server for real-time UI linting").option("-p, --port <number>", "Port to listen on", "9234").option("--no-dashboard", "Disable dashboard UI (use simple logging)").action(async (options) => {
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
execute,
|
|
9
9
|
getAllInstallers,
|
|
10
10
|
getInjectionPoints
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-EBTY4AR3.js";
|
|
12
12
|
import {
|
|
13
13
|
detectCoverageSetup
|
|
14
14
|
} from "./chunk-WRXJULXA.js";
|
|
@@ -1863,4 +1863,4 @@ ${pc.blue("Running tests with coverage...")}`);
|
|
|
1863
1863
|
export {
|
|
1864
1864
|
initUI
|
|
1865
1865
|
};
|
|
1866
|
-
//# sourceMappingURL=init-ui-
|
|
1866
|
+
//# sourceMappingURL=init-ui-G7NOKQ56.js.map
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
analyze,
|
|
5
5
|
execute,
|
|
6
6
|
getAllInstallers
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-EBTY4AR3.js";
|
|
8
8
|
import "./chunk-WRXJULXA.js";
|
|
9
9
|
import "./chunk-VSBVUS56.js";
|
|
10
10
|
import "./chunk-ZDSDZNIB.js";
|
|
@@ -598,4 +598,4 @@ async function removeUI(options = {}) {
|
|
|
598
598
|
export {
|
|
599
599
|
removeUI
|
|
600
600
|
};
|
|
601
|
-
//# sourceMappingURL=remove-ui-
|
|
601
|
+
//# sourceMappingURL=remove-ui-4E7MROVY.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uilint",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.112",
|
|
4
4
|
"description": "CLI for UILint - AI-powered UI consistency checking",
|
|
5
5
|
"author": "Peter Suggate",
|
|
6
6
|
"repository": {
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"react": "^19.2.3",
|
|
50
50
|
"typescript": "^5.9.3",
|
|
51
51
|
"ws": "^8.19.0",
|
|
52
|
-
"uilint-core": "0.2.
|
|
53
|
-
"uilint-duplicates": "0.2.
|
|
54
|
-
"uilint-eslint": "0.2.
|
|
52
|
+
"uilint-core": "0.2.112",
|
|
53
|
+
"uilint-duplicates": "0.2.112",
|
|
54
|
+
"uilint-eslint": "0.2.112"
|
|
55
55
|
},
|
|
56
56
|
"optionalDependencies": {
|
|
57
57
|
"@langfuse/client": "^4.5.1",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"ink-testing-library": "^4.0.0",
|
|
68
68
|
"tsup": "^8.5.1",
|
|
69
69
|
"vitest": "^4.0.17",
|
|
70
|
-
"uilint-react": "0.2.
|
|
70
|
+
"uilint-react": "0.2.112"
|
|
71
71
|
},
|
|
72
72
|
"keywords": [
|
|
73
73
|
"cli",
|