gitmorph 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/postinstall.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitmorph",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "GitMorph CLI — work with gitmorph.com from the command line",
5
5
  "bin": {
6
6
  "gm": "bin/gm"
package/postinstall.js CHANGED
@@ -4,7 +4,7 @@ const https = require("https");
4
4
 
5
5
  const VERSION = require("./package.json").version;
6
6
  const HOST = "gitmorph.com";
7
- const REPO = "tejas/cli";
7
+ const REPO = "morphllm/cli";
8
8
  const BIN_DIR = path.join(__dirname, "bin");
9
9
  const BINARY_PATH = path.join(BIN_DIR, "gm-binary");
10
10