@j3m-quantum/ui 1.11.2 → 2.1.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 +72 -7
- package/cursor-rules-for-consumers.md +24 -15
- package/dist/cli/index.js +670 -0
- package/dist/cli/postinstall.js +25 -0
- package/dist/index.cjs +2443 -624
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +213 -31
- package/dist/index.d.ts +213 -31
- package/dist/index.js +2440 -626
- package/dist/index.js.map +1 -1
- package/package.json +8 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// src/cli/postinstall.ts
|
|
3
|
+
var isCI = process.env.CI || process.env.CONTINUOUS_INTEGRATION;
|
|
4
|
+
if (!isCI) {
|
|
5
|
+
console.log(`
|
|
6
|
+
\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510
|
|
7
|
+
\u2502 \u2502
|
|
8
|
+
\u2502 \u{1F3A8} @j3m-quantum/ui installed successfully! \u2502
|
|
9
|
+
\u2502 \u2502
|
|
10
|
+
\u2502 To set up AI assistance (Cursor, Copilot): \u2502
|
|
11
|
+
\u2502 \u2502
|
|
12
|
+
\u2502 npx @j3m-quantum/ui init \u2502
|
|
13
|
+
\u2502 \u2502
|
|
14
|
+
\u2502 This ensures AI uses the correct components \u2502
|
|
15
|
+
\u2502 instead of creating new ones. \u2502
|
|
16
|
+
\u2502 \u2502
|
|
17
|
+
\u2502 Other commands: \u2502
|
|
18
|
+
\u2502 npx @j3m-quantum/ui list - List components \u2502
|
|
19
|
+
\u2502 npx @j3m-quantum/ui doctor - Check setup \u2502
|
|
20
|
+
\u2502 \u2502
|
|
21
|
+
\u2502 Docs: See cursor-rules-for-consumers.md in package \u2502
|
|
22
|
+
\u2502 \u2502
|
|
23
|
+
\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518
|
|
24
|
+
`);
|
|
25
|
+
}
|