@ferrflow/darwin-arm64 4.10.3 → 5.19.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 +12 -9
- package/bin/ferrflow +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# FerrFlow
|
|
2
2
|
|
|
3
3
|
[](https://github.com/FerrLabs/FerrFlow/releases/latest)
|
|
4
|
-
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
5
|
+
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
5
6
|
[](LICENSE)
|
|
6
7
|
[](https://badge.socket.dev/npm/package/ferrflow/latest)
|
|
7
8
|
[](https://scorecard.dev/viewer/?uri=github.com/FerrLabs/FerrFlow)
|
|
@@ -47,10 +48,12 @@ cargo install ferrflow
|
|
|
47
48
|
npm install -D ferrflow
|
|
48
49
|
```
|
|
49
50
|
|
|
51
|
+
(`@ferrlabs/ferrflow` is kept as a published alias for the same package.)
|
|
52
|
+
|
|
50
53
|
**Docker**
|
|
51
54
|
|
|
52
55
|
```bash
|
|
53
|
-
docker run ghcr.io/
|
|
56
|
+
docker run ghcr.io/ferrlabs/ferrflow:latest check
|
|
54
57
|
```
|
|
55
58
|
|
|
56
59
|
**Pre-built binaries**
|
|
@@ -152,7 +155,7 @@ Add `$schema` to get autocompletion and validation in VS Code, WebStorm, and any
|
|
|
152
155
|
"name": "my-app",
|
|
153
156
|
"path": ".",
|
|
154
157
|
"changelog": "CHANGELOG.md",
|
|
155
|
-
"
|
|
158
|
+
"versionedFiles": [
|
|
156
159
|
{ "path": "package.json", "format": "json" }
|
|
157
160
|
]
|
|
158
161
|
}
|
|
@@ -173,7 +176,7 @@ Add `$schema` to get autocompletion and validation in VS Code, WebStorm, and any
|
|
|
173
176
|
name: "my-app",
|
|
174
177
|
path: ".",
|
|
175
178
|
changelog: "CHANGELOG.md",
|
|
176
|
-
|
|
179
|
+
versionedFiles: [
|
|
177
180
|
{ path: "package.json", format: "json" },
|
|
178
181
|
],
|
|
179
182
|
},
|
|
@@ -210,8 +213,8 @@ format = "toml"
|
|
|
210
213
|
"name": "api",
|
|
211
214
|
"path": "services/api",
|
|
212
215
|
"changelog": "services/api/CHANGELOG.md",
|
|
213
|
-
"
|
|
214
|
-
"
|
|
216
|
+
"sharedPaths": ["services/shared/"],
|
|
217
|
+
"versionedFiles": [
|
|
215
218
|
{ "path": "services/api/Cargo.toml", "format": "toml" }
|
|
216
219
|
]
|
|
217
220
|
},
|
|
@@ -219,7 +222,7 @@ format = "toml"
|
|
|
219
222
|
"name": "frontend",
|
|
220
223
|
"path": "frontend",
|
|
221
224
|
"changelog": "frontend/CHANGELOG.md",
|
|
222
|
-
"
|
|
225
|
+
"versionedFiles": [
|
|
223
226
|
{ "path": "frontend/package.json", "format": "json" }
|
|
224
227
|
]
|
|
225
228
|
}
|
|
@@ -490,7 +493,7 @@ on_failure = "abort" # or "continue"
|
|
|
490
493
|
|
|
491
494
|
If a hook exits non-zero and `on_failure` is `abort` (default), the release is cancelled. Set `on_failure` to `continue` to ignore hook failures.
|
|
492
495
|
|
|
493
|
-
Hook commands receive environment variables: `FERRFLOW_PACKAGE`, `
|
|
496
|
+
Hook commands receive environment variables: `FERRFLOW_PACKAGE`, `FERRFLOW_OLD_VERSION`, `FERRFLOW_NEW_VERSION`, `FERRFLOW_BUMP_TYPE`, `FERRFLOW_TAG`, `FERRFLOW_PACKAGE_PATH`, `FERRFLOW_DRY_RUN`, `FERRFLOW_CHANNEL`, `FERRFLOW_IS_PRERELEASE`.
|
|
494
497
|
|
|
495
498
|
## Conventional Commits
|
|
496
499
|
|
|
@@ -509,7 +512,7 @@ FerrFlow follows the [Conventional Commits](https://www.conventionalcommits.org/
|
|
|
509
512
|
|
|
510
513
|
```yaml
|
|
511
514
|
release:
|
|
512
|
-
image: ghcr.io/
|
|
515
|
+
image: ghcr.io/ferrlabs/ferrflow:latest
|
|
513
516
|
script:
|
|
514
517
|
- ferrflow release
|
|
515
518
|
rules:
|
package/bin/ferrflow
CHANGED
|
Binary file
|
package/package.json
CHANGED