create-kai 0.3.0 → 0.3.1
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
CHANGED
|
@@ -4749,7 +4749,7 @@ async function runWizard(shape, name, io, nonInteractive) {
|
|
|
4749
4749
|
var OFFERABLE_FEATURE_IDS = [
|
|
4750
4750
|
...new Set(readyFrameworks().flatMap((f) => availableFeatures(f).map((feature) => feature.id)))
|
|
4751
4751
|
];
|
|
4752
|
-
var DEFAULT_KIT_RANGE = "^0.
|
|
4752
|
+
var DEFAULT_KIT_RANGE = "^0.30.0";
|
|
4753
4753
|
var HELP = `
|
|
4754
4754
|
${import_picocolors3.default.bold("create-kai")} \u2014 scaffold a runnable @kitn.ai/ui chat app
|
|
4755
4755
|
|
|
@@ -4780,7 +4780,7 @@ async function main() {
|
|
|
4780
4780
|
return 0;
|
|
4781
4781
|
}
|
|
4782
4782
|
if (args.version) {
|
|
4783
|
-
console.log("0.3.
|
|
4783
|
+
console.log("0.3.1");
|
|
4784
4784
|
return 0;
|
|
4785
4785
|
}
|
|
4786
4786
|
if (args.list) {
|
|
@@ -4914,7 +4914,7 @@ Available for ${framework.label}: ${featureList(offered)}`);
|
|
|
4914
4914
|
// which kit the CLI was built against, which stays true when `--kit` sends
|
|
4915
4915
|
// the dependency somewhere else — the emitted files are this version's shape
|
|
4916
4916
|
// whatever the project ends up installing.
|
|
4917
|
-
kitBuiltAgainst: "0.
|
|
4917
|
+
kitBuiltAgainst: "0.30.0"
|
|
4918
4918
|
};
|
|
4919
4919
|
const spinner = Y2();
|
|
4920
4920
|
spinner.start("Scaffolding");
|
|
@@ -5057,12 +5057,12 @@ function run(command, cwd) {
|
|
|
5057
5057
|
}
|
|
5058
5058
|
function printMatrix(asJson) {
|
|
5059
5059
|
const matrix = {
|
|
5060
|
-
cli: "0.3.
|
|
5060
|
+
cli: "0.3.1",
|
|
5061
5061
|
kit: DEFAULT_KIT_RANGE,
|
|
5062
5062
|
// The same pair `kai.json` carries. An agent reading this to decide what to
|
|
5063
5063
|
// install gets the range; one reasoning about which kit the templates match
|
|
5064
5064
|
// gets the exact version, without having to parse the range for a floor.
|
|
5065
|
-
kitBuiltAgainst: "0.
|
|
5065
|
+
kitBuiltAgainst: "0.30.0",
|
|
5066
5066
|
frameworks: FRAMEWORKS.map((f) => ({
|
|
5067
5067
|
id: f.id,
|
|
5068
5068
|
label: f.label,
|
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
"solid-js": "^1.9.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
17
18
|
"@tailwindcss/vite": "^4.2.2",
|
|
18
19
|
"tailwindcss": "^4.2.2",
|
|
20
|
+
"tw-animate-css": "^1.4.0",
|
|
19
21
|
"typescript": "^5.5.0",
|
|
20
22
|
"vite": "^6.0.0",
|
|
21
23
|
"vite-plugin-solid": "^2.11.0"
|