thinkncollab-cli 0.0.60 → 0.0.61

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.
@@ -6,7 +6,8 @@ import inquirer from "inquirer";
6
6
 
7
7
  async function updateBranch(branchName) {
8
8
  const currenDir = process.cwd();
9
- const tncmetaFile = path.join(currenDir, ".tncmeta.json")
9
+ const tncFolder = path.join(currenDir, ".tnc");
10
+ const tncmetaFile = path.join(tncFolder, ".tncmeta.json")
10
11
 
11
12
  if(!fs.readFileSync(tncmetaFile)) {
12
13
 
@@ -15,7 +16,7 @@ async function updateBranch(branchName) {
15
16
 
16
17
 
17
18
  fs.writeFileSync(tncmetaFile, content, "utf-8" );
18
-
19
+
19
20
  }
20
21
 
21
22
  async function createBranch(roomId) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "thinkncollab-cli",
3
3
  "author": "Raman Singh",
4
- "version": "0.0.60",
4
+ "version": "0.0.61",
5
5
  "description": "CLI tool for ThinkNCollab",
6
6
  "main": "index.js",
7
7
  "bin": {