create-kai 0.1.3 → 0.1.4
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4222,7 +4222,7 @@ function detectPackageManager(userAgent = process.env.npm_config_user_agent) {
|
|
|
4222
4222
|
}
|
|
4223
4223
|
|
|
4224
4224
|
// src/index.ts
|
|
4225
|
-
var DEFAULT_KIT_RANGE = "^0.25.
|
|
4225
|
+
var DEFAULT_KIT_RANGE = "^0.25.2";
|
|
4226
4226
|
var HELP = `
|
|
4227
4227
|
${import_picocolors3.default.bold("create-kai")} \u2014 scaffold a runnable @kitn.ai/ui chat app
|
|
4228
4228
|
|
|
@@ -4253,7 +4253,7 @@ async function main() {
|
|
|
4253
4253
|
return 0;
|
|
4254
4254
|
}
|
|
4255
4255
|
if (args.version) {
|
|
4256
|
-
console.log("0.1.
|
|
4256
|
+
console.log("0.1.4");
|
|
4257
4257
|
return 0;
|
|
4258
4258
|
}
|
|
4259
4259
|
if (args.list) {
|
|
@@ -4348,7 +4348,7 @@ async function main() {
|
|
|
4348
4348
|
// which kit the CLI was built against, which stays true when `--kit` sends
|
|
4349
4349
|
// the dependency somewhere else — the emitted files are this version's shape
|
|
4350
4350
|
// whatever the project ends up installing.
|
|
4351
|
-
kitBuiltAgainst: "0.25.
|
|
4351
|
+
kitBuiltAgainst: "0.25.2"
|
|
4352
4352
|
};
|
|
4353
4353
|
const spinner = Y2();
|
|
4354
4354
|
spinner.start("Scaffolding");
|
|
@@ -4414,12 +4414,12 @@ function run(command, cwd) {
|
|
|
4414
4414
|
}
|
|
4415
4415
|
function printMatrix(asJson) {
|
|
4416
4416
|
const matrix = {
|
|
4417
|
-
cli: "0.1.
|
|
4417
|
+
cli: "0.1.4",
|
|
4418
4418
|
kit: DEFAULT_KIT_RANGE,
|
|
4419
4419
|
// The same pair `kai.json` carries. An agent reading this to decide what to
|
|
4420
4420
|
// install gets the range; one reasoning about which kit the templates match
|
|
4421
4421
|
// gets the exact version, without having to parse the range for a floor.
|
|
4422
|
-
kitBuiltAgainst: "0.25.
|
|
4422
|
+
kitBuiltAgainst: "0.25.2",
|
|
4423
4423
|
frameworks: FRAMEWORKS.map((f) => ({
|
|
4424
4424
|
id: f.id,
|
|
4425
4425
|
label: f.label,
|