thinkncollab-cli 0.0.34 → 0.0.35
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/bin/index.js +14 -0
- package/commands/init.js +5 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -384,6 +384,20 @@ async function push(roomId, targetPath) {
|
|
|
384
384
|
};
|
|
385
385
|
flattenAndStore(uploadedTree);
|
|
386
386
|
saveVersions(newVersionMap);
|
|
387
|
+
const newPushRecord = {
|
|
388
|
+
version: item.version || 1,
|
|
389
|
+
pushedAt: new Date().toISOString(),
|
|
390
|
+
roomId: roomId,
|
|
391
|
+
pushedBy: email,
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
const pushFilePath = path.join(CWD, ".tnc", ".tncpush.json");
|
|
397
|
+
fs.writeFileSync(
|
|
398
|
+
pushFilePath,
|
|
399
|
+
JSON.stringify(newPushRecord, null, 2)
|
|
400
|
+
);
|
|
387
401
|
|
|
388
402
|
console.log(`💾 Saved ${Object.keys(newVersionMap).length} files to .tncversions`);
|
|
389
403
|
|
package/commands/init.js
CHANGED
|
@@ -36,6 +36,7 @@ async function projectInit() {
|
|
|
36
36
|
|
|
37
37
|
// Write metadata file
|
|
38
38
|
const metaFilePath = path.join(tncFolderPath, ".tncmeta.json");
|
|
39
|
+
const pushFilePath = path.join(tncFolderPath, ".tncpush.json");
|
|
39
40
|
fs.writeFileSync(
|
|
40
41
|
metaFilePath,
|
|
41
42
|
JSON.stringify(
|
|
@@ -50,6 +51,10 @@ async function projectInit() {
|
|
|
50
51
|
2
|
|
51
52
|
)
|
|
52
53
|
);
|
|
54
|
+
fs.writeFileSync(
|
|
55
|
+
pushFilePath,
|
|
56
|
+
" {} "
|
|
57
|
+
)
|
|
53
58
|
|
|
54
59
|
console.log("✅ Project initialized successfully!");
|
|
55
60
|
}
|