bravecode-cli 0.1.55 → 0.1.56
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/cli-main.mjs +3 -3
- package/dist/cli-main.mjs.map +2 -2
- package/package.json +1 -1
package/dist/cli-main.mjs
CHANGED
|
@@ -37792,11 +37792,11 @@ var init_file = __esm({
|
|
|
37792
37792
|
};
|
|
37793
37793
|
writeTool = {
|
|
37794
37794
|
name: "write",
|
|
37795
|
-
description: "Write a file
|
|
37795
|
+
description: "Write a file. USE A RELATIVE PATH inside a project directory you create (e.g. my-app/src/index.tsx). Absolute paths like /full/system/path/... are forbidden. Parent directories are created automatically.",
|
|
37796
37796
|
parameters: {
|
|
37797
37797
|
type: "object",
|
|
37798
37798
|
properties: {
|
|
37799
|
-
filePath: { type: "string", description: "
|
|
37799
|
+
filePath: { type: "string", description: "A RELATIVE path inside the project directory (e.g. my-app/src/index.tsx). Parent directories are created automatically." },
|
|
37800
37800
|
content: { type: "string", description: "The content to write" }
|
|
37801
37801
|
},
|
|
37802
37802
|
required: ["filePath", "content"]
|
|
@@ -38286,7 +38286,7 @@ var APP_VERSION, APP_NAME;
|
|
|
38286
38286
|
var init_version = __esm({
|
|
38287
38287
|
"src/version.ts"() {
|
|
38288
38288
|
"use strict";
|
|
38289
|
-
APP_VERSION = "0.1.
|
|
38289
|
+
APP_VERSION = "0.1.56";
|
|
38290
38290
|
APP_NAME = "BraveCode";
|
|
38291
38291
|
}
|
|
38292
38292
|
});
|