@flarecode/import-memory 0.2.0 → 0.2.1
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/package.json +5 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarecode/import-memory",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "One-command helper for discovering local coding-agent memory sources before importing them into FlareCode.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
"exports": {
|
|
12
12
|
".": "./src/scanner.js"
|
|
13
13
|
},
|
|
14
|
-
"files": [
|
|
14
|
+
"files": [
|
|
15
|
+
"src",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
15
18
|
"publishConfig": {
|
|
16
19
|
"access": "public"
|
|
17
20
|
},
|
package/src/index.js
CHANGED
|
@@ -111,7 +111,7 @@ async function main(argv) {
|
|
|
111
111
|
process.stdout.write("Authorized! Uploading scan summary...\n");
|
|
112
112
|
const rulesContent = await readRulesContent(result);
|
|
113
113
|
const importId = await uploadImport(token, result, rulesContent);
|
|
114
|
-
process.stdout.write(`Done. Review and approve your memory at: ${APP_BASE}/?memory
|
|
114
|
+
process.stdout.write(`Done. Review and approve your memory at: ${APP_BASE}/?account=memory\n`);
|
|
115
115
|
void importId;
|
|
116
116
|
} catch (err) {
|
|
117
117
|
process.stderr.write(`Upload failed: ${err instanceof Error ? err.message : String(err)}\n`);
|