thinkncollab-cli 0.0.14 → 0.0.16
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 +1 -1
- package/commands/init.js +1 -1
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import os from "os";
|
|
|
6
6
|
import path from "path";
|
|
7
7
|
import crypto from "crypto";
|
|
8
8
|
import FormData from "form-data";
|
|
9
|
-
import projectInit from "../commands/init"
|
|
9
|
+
import projectInit from "../commands/init.js";
|
|
10
10
|
|
|
11
11
|
const RC_FILE = path.join(os.homedir(), ".tncrc");
|
|
12
12
|
const VERSION_FILE = path.join(process.cwd(), ".tncversions");
|
package/commands/init.js
CHANGED