@ghost.build/cli 0.6.1 → 0.8.3

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/bin/ghost +1 -1
  2. package/package.json +16 -14
package/bin/ghost CHANGED
@@ -28,7 +28,7 @@ if (!binPath) {
28
28
  `ghost does not ship prebuilt binaries for your platform (${platform}-${arch}).`
29
29
  );
30
30
  console.error(
31
- "You can install from source instead: https://github.com/timescale/ghost"
31
+ "For more information, visit: https://ghost.build/docs"
32
32
  );
33
33
  process.exitCode = 1;
34
34
  } else {
package/package.json CHANGED
@@ -1,22 +1,24 @@
1
1
  {
2
- "name": "@ghost.build/cli",
3
- "version": "0.6.1",
2
+ "bin": {
3
+ "ghost": "bin/ghost"
4
+ },
4
5
  "description": "Ghost CLI for managing PostgreSQL databases",
6
+ "files": [
7
+ "bin"
8
+ ],
9
+ "homepage": "https://ghost.build",
5
10
  "license": "Apache-2.0",
11
+ "name": "@ghost.build/cli",
12
+ "optionalDependencies": {
13
+ "@ghost.build/cli-darwin-arm64": "0.8.3",
14
+ "@ghost.build/cli-darwin-x64": "0.8.3",
15
+ "@ghost.build/cli-linux-arm64": "0.8.3",
16
+ "@ghost.build/cli-linux-x64": "0.8.3",
17
+ "@ghost.build/cli-win32-x64": "0.8.3"
18
+ },
6
19
  "repository": {
7
20
  "type": "git",
8
21
  "url": "git+https://github.com/timescale/ghost.git"
9
22
  },
10
- "homepage": "https://ghost.build",
11
- "bin": {
12
- "ghost": "bin/ghost"
13
- },
14
- "files": ["bin"],
15
- "optionalDependencies": {
16
- "@ghost.build/cli-linux-x64": "0.6.1",
17
- "@ghost.build/cli-linux-arm64": "0.6.1",
18
- "@ghost.build/cli-darwin-x64": "0.6.1",
19
- "@ghost.build/cli-darwin-arm64": "0.6.1",
20
- "@ghost.build/cli-win32-x64": "0.6.1"
21
- }
23
+ "version": "0.8.3"
22
24
  }