@getcoherent/cli 0.3.0 → 0.3.2
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/index.js +19 -8
- package/package.json +10 -10
- package/LICENSE +0 -21
package/dist/index.js
CHANGED
|
@@ -1019,8 +1019,8 @@ export default function HomePage() {
|
|
|
1019
1019
|
</div>
|
|
1020
1020
|
</section>
|
|
1021
1021
|
|
|
1022
|
-
{/* Footer */}
|
|
1023
|
-
<
|
|
1022
|
+
{/* Footer links (shared Footer component provides the main footer) */}
|
|
1023
|
+
<div className="border-t pt-8 pb-8 mt-auto">
|
|
1024
1024
|
<div className="flex flex-col items-center gap-5 px-4">
|
|
1025
1025
|
<div className="flex items-center gap-3">
|
|
1026
1026
|
<div className="flex size-8 items-center justify-center rounded-lg bg-primary text-primary-foreground shrink-0">
|
|
@@ -1028,7 +1028,7 @@ export default function HomePage() {
|
|
|
1028
1028
|
</div>
|
|
1029
1029
|
<span className="text-sm font-semibold">Coherent Design Method</span>
|
|
1030
1030
|
</div>
|
|
1031
|
-
<
|
|
1031
|
+
<div className="flex flex-wrap items-center justify-center gap-x-6 gap-y-2">
|
|
1032
1032
|
<a
|
|
1033
1033
|
href="https://getcoherent.design"
|
|
1034
1034
|
target="_blank"
|
|
@@ -1046,7 +1046,7 @@ export default function HomePage() {
|
|
|
1046
1046
|
<a href="#" className="text-xs text-muted-foreground hover:text-foreground transition-colors">
|
|
1047
1047
|
Privacy Policy
|
|
1048
1048
|
</a>
|
|
1049
|
-
</
|
|
1049
|
+
</div>
|
|
1050
1050
|
<p className="text-xs text-muted-foreground">
|
|
1051
1051
|
\xA9 {new Date().getFullYear()}{' '}
|
|
1052
1052
|
<a
|
|
@@ -1059,7 +1059,7 @@ export default function HomePage() {
|
|
|
1059
1059
|
</a>
|
|
1060
1060
|
</p>
|
|
1061
1061
|
</div>
|
|
1062
|
-
</
|
|
1062
|
+
</div>
|
|
1063
1063
|
</div>
|
|
1064
1064
|
)
|
|
1065
1065
|
}
|
|
@@ -6506,16 +6506,28 @@ ${fixed}`;
|
|
|
6506
6506
|
} catch {
|
|
6507
6507
|
}
|
|
6508
6508
|
if (lucideExports) {
|
|
6509
|
+
const nonLucideImports = /* @__PURE__ */ new Set();
|
|
6510
|
+
for (const m of fixed.matchAll(/import\s*\{([^}]+)\}\s*from\s*["'](?!lucide-react)([^"']+)["']/g)) {
|
|
6511
|
+
m[1].split(",").map((s) => s.trim()).filter(Boolean).forEach((n) => nonLucideImports.add(n));
|
|
6512
|
+
}
|
|
6509
6513
|
const iconNames = lucideImportMatch[1].split(",").map((s) => s.trim()).filter(Boolean);
|
|
6510
|
-
const
|
|
6514
|
+
const duplicates = iconNames.filter((name) => nonLucideImports.has(name));
|
|
6515
|
+
let newImport = lucideImportMatch[1];
|
|
6516
|
+
for (const dup of duplicates) {
|
|
6517
|
+
newImport = newImport.replace(new RegExp(`\\b${dup}\\b,?\\s*`), "");
|
|
6518
|
+
fixes.push(`removed ${dup} from lucide import (conflicts with UI component import)`);
|
|
6519
|
+
}
|
|
6520
|
+
const invalid = iconNames.filter((name) => !lucideExports.has(name) && !nonLucideImports.has(name));
|
|
6511
6521
|
if (invalid.length > 0) {
|
|
6512
6522
|
const fallback = "Circle";
|
|
6513
|
-
let newImport = lucideImportMatch[1];
|
|
6514
6523
|
for (const bad of invalid) {
|
|
6515
6524
|
const re = new RegExp(`\\b${bad}\\b`, "g");
|
|
6516
6525
|
newImport = newImport.replace(re, fallback);
|
|
6517
6526
|
fixed = fixed.replace(re, fallback);
|
|
6518
6527
|
}
|
|
6528
|
+
fixes.push(`invalid lucide icons \u2192 ${fallback}: ${invalid.join(", ")}`);
|
|
6529
|
+
}
|
|
6530
|
+
if (duplicates.length > 0 || invalid.length > 0) {
|
|
6519
6531
|
const importedNames = [
|
|
6520
6532
|
...new Set(
|
|
6521
6533
|
newImport.split(",").map((s) => s.trim()).filter(Boolean)
|
|
@@ -6523,7 +6535,6 @@ ${fixed}`;
|
|
|
6523
6535
|
];
|
|
6524
6536
|
const originalImportLine = lucideImportMatch[0];
|
|
6525
6537
|
fixed = fixed.replace(originalImportLine, `import { ${importedNames.join(", ")} } from "lucide-react"`);
|
|
6526
|
-
fixes.push(`invalid lucide icons \u2192 ${fallback}: ${invalid.join(", ")}`);
|
|
6527
6538
|
}
|
|
6528
6539
|
}
|
|
6529
6540
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"description": "CLI interface for Coherent Design Method",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "./dist/index.js",
|
|
@@ -33,8 +33,15 @@
|
|
|
33
33
|
],
|
|
34
34
|
"author": "Coherent Design Method",
|
|
35
35
|
"license": "MIT",
|
|
36
|
+
"scripts": {
|
|
37
|
+
"dev": "tsup --watch",
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"test": "vitest"
|
|
41
|
+
},
|
|
36
42
|
"dependencies": {
|
|
37
43
|
"@anthropic-ai/sdk": "^0.32.0",
|
|
44
|
+
"@getcoherent/core": "workspace:*",
|
|
38
45
|
"chalk": "^5.3.0",
|
|
39
46
|
"chokidar": "^4.0.1",
|
|
40
47
|
"commander": "^11.1.0",
|
|
@@ -42,19 +49,12 @@
|
|
|
42
49
|
"open": "^10.1.0",
|
|
43
50
|
"ora": "^7.0.1",
|
|
44
51
|
"prompts": "^2.4.2",
|
|
45
|
-
"zod": "^3.22.4"
|
|
46
|
-
"@getcoherent/core": "0.3.0"
|
|
52
|
+
"zod": "^3.22.4"
|
|
47
53
|
},
|
|
48
54
|
"devDependencies": {
|
|
49
55
|
"@types/node": "^20.11.0",
|
|
50
56
|
"@types/prompts": "^2.4.9",
|
|
51
57
|
"tsup": "^8.0.1",
|
|
52
58
|
"typescript": "^5.3.3"
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"dev": "tsup --watch",
|
|
56
|
-
"build": "tsup",
|
|
57
|
-
"typecheck": "tsc --noEmit",
|
|
58
|
-
"test": "vitest"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Sergei Kovtun
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|