@ace3-memory/ace 3.0.15 → 3.0.17
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/download-binary.js +5 -0
- package/package.json +3 -2
package/download-binary.js
CHANGED
|
@@ -79,6 +79,11 @@ function downloadFile(url, destPath) {
|
|
|
79
79
|
|
|
80
80
|
// Main installation
|
|
81
81
|
async function install() {
|
|
82
|
+
if (process.env.ACE_SKIP_DOWNLOAD) {
|
|
83
|
+
console.log('⏭️ Skipping download (ACE_SKIP_DOWNLOAD set)');
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
|
|
82
87
|
const platformKey = `${platform}-${arch}`;
|
|
83
88
|
const binaryName = BINARY_MAP[platformKey];
|
|
84
89
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ace3-memory/ace",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.17",
|
|
4
4
|
"description": "Your Logbook for AI - persistent memory for ChatGPT, Claude, Gemini, and more",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
"cli.js",
|
|
58
58
|
"download-binary.js",
|
|
59
59
|
"README.md",
|
|
60
|
-
"LICENSE"
|
|
60
|
+
"LICENSE",
|
|
61
|
+
"bin"
|
|
61
62
|
],
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"typescript-eslint": "^8.53.0"
|