gaji 0.5.0 → 0.6.0
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 +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -242,7 +242,7 @@ gaji dev [OPTIONS]
|
|
|
242
242
|
|
|
243
243
|
| Option | Description |
|
|
244
244
|
|---|---|
|
|
245
|
-
| `-i, --input <PATH>...` | Workflow directories or individual `.ts` files (
|
|
245
|
+
| `-i, --input <PATH>...` | Workflow directories or individual `.ts` files (falls back to `workflows_dir` in config) |
|
|
246
246
|
| `--watch` | Keep watching for changes after the initial scan |
|
|
247
247
|
|
|
248
248
|
### `gaji build`
|
|
@@ -255,8 +255,8 @@ gaji build [OPTIONS]
|
|
|
255
255
|
|
|
256
256
|
| Option | Description |
|
|
257
257
|
|---|---|
|
|
258
|
-
| `-i, --input <PATH>...` | Workflow directories or individual `.ts` files (
|
|
259
|
-
| `-o, --output <DIR>` | Output directory for YAML files (
|
|
258
|
+
| `-i, --input <PATH>...` | Workflow directories or individual `.ts` files (falls back to `workflows_dir` in config) |
|
|
259
|
+
| `-o, --output <DIR>` | Output directory for YAML files (falls back to `output_dir` in config) |
|
|
260
260
|
| `--dry-run` | Preview YAML output without writing files |
|
|
261
261
|
|
|
262
262
|
Output files are placed in subdirectories based on type:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaji",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Type-safe GitHub Actions workflows in TypeScript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"provenance": true
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@gaji/linux-x64": "0.
|
|
37
|
-
"@gaji/linux-arm64": "0.
|
|
38
|
-
"@gaji/darwin-x64": "0.
|
|
39
|
-
"@gaji/darwin-arm64": "0.
|
|
40
|
-
"@gaji/win32-x64": "0.
|
|
36
|
+
"@gaji/linux-x64": "0.6.0",
|
|
37
|
+
"@gaji/linux-arm64": "0.6.0",
|
|
38
|
+
"@gaji/darwin-x64": "0.6.0",
|
|
39
|
+
"@gaji/darwin-arm64": "0.6.0",
|
|
40
|
+
"@gaji/win32-x64": "0.6.0"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
43
43
|
"github-actions",
|