visionclaw 0.1.161 → 0.1.162
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/CHANGELOG.md +4 -0
- package/dist-agent/bundle.cjs +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist-agent/bundle.cjs
CHANGED
|
@@ -20177,7 +20177,7 @@ var require_prompts3 = __commonJS({
|
|
|
20177
20177
|
|
|
20178
20178
|
// dist/utils/version-check.js
|
|
20179
20179
|
function isBundled() {
|
|
20180
|
-
const v7 = "0.1.
|
|
20180
|
+
const v7 = "0.1.162";
|
|
20181
20181
|
return typeof v7 === "string" && v7 !== "undefined";
|
|
20182
20182
|
}
|
|
20183
20183
|
function getPackageRoot() {
|
|
@@ -20194,7 +20194,7 @@ function getInstallationInfo() {
|
|
|
20194
20194
|
};
|
|
20195
20195
|
}
|
|
20196
20196
|
function getCurrentVersion() {
|
|
20197
|
-
const bundledVersion = "0.1.
|
|
20197
|
+
const bundledVersion = "0.1.162";
|
|
20198
20198
|
if (bundledVersion && bundledVersion !== "undefined") {
|
|
20199
20199
|
return bundledVersion;
|
|
20200
20200
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.162",
|
|
4
4
|
"description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
111
111
|
"build:bundle": "node scripts/esbuild-bundle.cjs",
|
|
112
112
|
"build:obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --identifier-names-generator hexadecimal --string-array true --string-array-encoding base64 --rename-properties false",
|
|
113
|
-
"release": "pnpm lint && pnpm build && pnpm
|
|
113
|
+
"release": "pnpm lint && pnpm build && pnpm version patch --no-git-tag-version && pnpm run build:bundle && pnpm changelog && git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish"
|
|
114
114
|
}
|
|
115
115
|
}
|