@yaakapp/cli 0.0.18 → 0.0.22

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 CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@yaakapp/cli",
3
- "version": "0.0.18",
4
- "repository": "https://github.com/yaakapp/cli",
3
+ "version": "0.0.22",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/yaakapp/cli.git"
7
+ },
5
8
  "files": [
6
9
  "scripts"
7
10
  ],
@@ -77,7 +77,7 @@ async function downloadBinary() {
77
77
  // Download the tarball of the right binary distribution package
78
78
  const platform = process.platform === 'win32' ? 'windows' : process.platform;
79
79
  const arch = process.arch === 'x64' ? 'amd64' : process.arch;
80
- const url = `https://github.com/yaakapp/yaakcli/releases/download/v${VERSION}/yaakcli_${VERSION}_${platform}_${arch}.tar.gz`;
80
+ const url = `https://github.com/yaakapp/cli/releases/download/v${VERSION}/yaakcli_${VERSION}_${platform}_${arch}.tar.gz`;
81
81
  console.log(`Downloading ${url}`);
82
82
  const tarballDownloadBuffer = await makeRequest(url);
83
83