@kaelen-ai/cli 0.1.12 → 0.1.13
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 +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -5031,7 +5031,7 @@ async function signalEmitCommand(name, options) {
|
|
|
5031
5031
|
|
|
5032
5032
|
// src/index.ts
|
|
5033
5033
|
var program = new Command();
|
|
5034
|
-
program.name("io").description("IO CLI \u2014 build and deploy behaviors").version("0.1.
|
|
5034
|
+
program.name("io").description("IO CLI \u2014 build and deploy behaviors").version("0.1.13");
|
|
5035
5035
|
program.command("init").description("Initialize io.config.json for the current project").option("--yes", "Overwrite existing config without prompting").action(initCommand);
|
|
5036
5036
|
program.command("build").description("Build behaviors from the io/ directory").option("--dir <path>", "Source directory", "io").option("--minify", "Minify bundles", false).action(buildCommand);
|
|
5037
5037
|
program.command("deploy").description("Build and package for deployment").option("--dir <path>", "Source directory", "io").option("--no-minify", "Skip minification").option("--yes", "Skip confirmation prompt").action(deployCommand);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaelen-ai/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "CLI for Kaelen — build, deploy, and manage behaviors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"io": "
|
|
8
|
-
"io-cli": "
|
|
7
|
+
"io": "dist/index.js",
|
|
8
|
+
"io-cli": "dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"main": "./dist/index.js",
|
|
11
11
|
"files": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@absinthe/socket": "^0.2.1",
|
|
39
|
-
"@kaelen-ai/sdk": "^0.1.
|
|
39
|
+
"@kaelen-ai/sdk": "^0.1.6",
|
|
40
40
|
"acorn": "^8.14.1",
|
|
41
41
|
"acorn-walk": "^8.3.4",
|
|
42
42
|
"archiver": "^7.0.1",
|