haloy 0.1.0-beta.18 → 0.1.0-beta.20
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/README.md +0 -27
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -20,35 +20,8 @@ npx haloy version
|
|
|
20
20
|
haloy [command] [flags]
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
### Commands
|
|
24
|
-
|
|
25
|
-
- `haloy init` - Initialize a new Haloy configuration
|
|
26
|
-
- `haloy deploy` - Deploy your application
|
|
27
|
-
- `haloy version` - Show version information
|
|
28
|
-
|
|
29
23
|
For full documentation, visit [haloy.dev](https://haloy.dev).
|
|
30
24
|
|
|
31
|
-
## Programmatic API
|
|
32
|
-
|
|
33
|
-
You can also use Haloy programmatically:
|
|
34
|
-
|
|
35
|
-
```javascript
|
|
36
|
-
const haloy = require("haloy");
|
|
37
|
-
|
|
38
|
-
// Get path to the binary
|
|
39
|
-
const binPath = haloy.getBinaryPath();
|
|
40
|
-
|
|
41
|
-
// Execute synchronously
|
|
42
|
-
const output = haloy.execSync(["version"]);
|
|
43
|
-
console.log(output.toString());
|
|
44
|
-
|
|
45
|
-
// Execute asynchronously
|
|
46
|
-
const child = haloy.exec(["deploy"], { stdio: "inherit" });
|
|
47
|
-
child.on("close", (code) => {
|
|
48
|
-
console.log(`Process exited with code ${code}`);
|
|
49
|
-
});
|
|
50
|
-
```
|
|
51
|
-
|
|
52
25
|
## Supported Platforms
|
|
53
26
|
|
|
54
27
|
- macOS (ARM64, x64)
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haloy",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.20",
|
|
4
4
|
"description": "Simple deployment tool for Docker-based applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/haloydev/
|
|
8
|
+
"url": "git+https://github.com/haloydev/npm.git"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://haloy.dev",
|
|
11
11
|
"bin": {
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"node": ">=16"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@haloydev/cli-darwin-arm64": "0.1.0-beta.
|
|
23
|
-
"@haloydev/cli-darwin-x64": "0.1.0-beta.
|
|
24
|
-
"@haloydev/cli-linux-arm64": "0.1.0-beta.
|
|
25
|
-
"@haloydev/cli-linux-x64": "0.1.0-beta.
|
|
26
|
-
"@haloydev/cli-win32-arm64": "0.1.0-beta.
|
|
27
|
-
"@haloydev/cli-win32-x64": "0.1.0-beta.
|
|
22
|
+
"@haloydev/cli-darwin-arm64": "0.1.0-beta.20",
|
|
23
|
+
"@haloydev/cli-darwin-x64": "0.1.0-beta.20",
|
|
24
|
+
"@haloydev/cli-linux-arm64": "0.1.0-beta.20",
|
|
25
|
+
"@haloydev/cli-linux-x64": "0.1.0-beta.20",
|
|
26
|
+
"@haloydev/cli-win32-arm64": "0.1.0-beta.20",
|
|
27
|
+
"@haloydev/cli-win32-x64": "0.1.0-beta.20"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"deploy",
|