uilint 0.2.89 → 0.2.91
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-OL3HPXVB.js → chunk-DZA4FNII.js} +11 -1
- package/dist/chunk-DZA4FNII.js.map +1 -0
- package/dist/{chunk-KCDJL7K7.js → chunk-GUL4IJOO.js} +37 -7
- package/dist/chunk-GUL4IJOO.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{init-ui-J7TB6LI4.js → init-ui-67QN34BO.js} +4 -4
- package/dist/{plan-MOW4I72L.js → plan-2EFVIRW2.js} +2 -2
- package/dist/{remove-ui-IJMGC7YS.js → remove-ui-O4B6EYSF.js} +2 -2
- package/package.json +5 -5
- package/dist/chunk-KCDJL7K7.js.map +0 -1
- package/dist/chunk-OL3HPXVB.js.map +0 -1
- /package/dist/{init-ui-J7TB6LI4.js.map → init-ui-67QN34BO.js.map} +0 -0
- /package/dist/{plan-MOW4I72L.js.map → plan-2EFVIRW2.js.map} +0 -0
- /package/dist/{remove-ui-IJMGC7YS.js.map → remove-ui-O4B6EYSF.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -4963,7 +4963,7 @@ program.command("update").description("Update existing style guide with new styl
|
|
|
4963
4963
|
});
|
|
4964
4964
|
});
|
|
4965
4965
|
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) => {
|
|
4966
|
-
const { initUI } = await import("./init-ui-
|
|
4966
|
+
const { initUI } = await import("./init-ui-67QN34BO.js");
|
|
4967
4967
|
await initUI({
|
|
4968
4968
|
force: options.force,
|
|
4969
4969
|
react: options.react,
|
|
@@ -4973,7 +4973,7 @@ program.command("init").description("Initialize UILint integration").option("--f
|
|
|
4973
4973
|
});
|
|
4974
4974
|
});
|
|
4975
4975
|
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) => {
|
|
4976
|
-
const { removeUI } = await import("./remove-ui-
|
|
4976
|
+
const { removeUI } = await import("./remove-ui-O4B6EYSF.js");
|
|
4977
4977
|
await removeUI({ dryRun: options.dryRun, yes: options.yes });
|
|
4978
4978
|
});
|
|
4979
4979
|
program.command("serve").description("Start WebSocket server for real-time UI linting").option("-p, --port <number>", "Port to listen on", "9234").action(async (options) => {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
createPlan
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-DZA4FNII.js";
|
|
5
5
|
import {
|
|
6
6
|
Spinner,
|
|
7
7
|
analyze,
|
|
8
8
|
execute,
|
|
9
9
|
getAllInstallers,
|
|
10
10
|
getInjectionPoints
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-GUL4IJOO.js";
|
|
12
12
|
import {
|
|
13
13
|
detectCoverageSetup
|
|
14
14
|
} from "./chunk-WRXJULXA.js";
|
|
@@ -1811,7 +1811,7 @@ async function initUI(options = {}, executeOptions = {}) {
|
|
|
1811
1811
|
console.log("\nNo changes selected");
|
|
1812
1812
|
process.exit(0);
|
|
1813
1813
|
}
|
|
1814
|
-
const { createPlan: createPlan2 } = await import("./plan-
|
|
1814
|
+
const { createPlan: createPlan2 } = await import("./plan-2EFVIRW2.js");
|
|
1815
1815
|
const plan = createPlan2(project, choices, { force: options.force });
|
|
1816
1816
|
if (hasRemovals && removeSelections) {
|
|
1817
1817
|
for (const selection of removeSelections) {
|
|
@@ -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-67QN34BO.js.map
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
createPlan,
|
|
4
4
|
getMissingRules
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-DZA4FNII.js";
|
|
6
6
|
import "./chunk-VSBVUS56.js";
|
|
7
7
|
import "./chunk-TKJ27W62.js";
|
|
8
8
|
import "./chunk-JPE27ROY.js";
|
|
@@ -10,4 +10,4 @@ export {
|
|
|
10
10
|
createPlan,
|
|
11
11
|
getMissingRules
|
|
12
12
|
};
|
|
13
|
-
//# sourceMappingURL=plan-
|
|
13
|
+
//# sourceMappingURL=plan-2EFVIRW2.js.map
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
analyze,
|
|
5
5
|
execute,
|
|
6
6
|
getAllInstallers
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-GUL4IJOO.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-O4B6EYSF.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uilint",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.91",
|
|
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-
|
|
53
|
-
"uilint-eslint": "0.2.
|
|
54
|
-
"uilint-
|
|
52
|
+
"uilint-core": "0.2.91",
|
|
53
|
+
"uilint-eslint": "0.2.91",
|
|
54
|
+
"uilint-duplicates": "0.2.91"
|
|
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.91"
|
|
71
71
|
},
|
|
72
72
|
"keywords": [
|
|
73
73
|
"cli",
|