@front-ops/domino 1.0.3 → 1.1.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 +7 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -71,6 +71,9 @@ npx @front-ops/domino affected
|
|
|
71
71
|
# Use a different base branch
|
|
72
72
|
npx @front-ops/domino affected --base origin/develop
|
|
73
73
|
|
|
74
|
+
# Compare specific commits (useful in CI patch pipelines)
|
|
75
|
+
npx @front-ops/domino affected --base abc123 --head def456
|
|
76
|
+
|
|
74
77
|
# Output as JSON
|
|
75
78
|
npx @front-ops/domino affected --json
|
|
76
79
|
|
|
@@ -95,6 +98,9 @@ domino affected
|
|
|
95
98
|
# Use a different base branch
|
|
96
99
|
domino affected --base origin/develop
|
|
97
100
|
|
|
101
|
+
# Compare specific commits (useful in CI patch pipelines)
|
|
102
|
+
domino affected --base abc123 --head def456
|
|
103
|
+
|
|
98
104
|
# Output as JSON
|
|
99
105
|
domino affected --json
|
|
100
106
|
|
|
@@ -108,6 +114,7 @@ domino affected --report report.html
|
|
|
108
114
|
### Options
|
|
109
115
|
|
|
110
116
|
- `--base <BRANCH>`: Base branch to compare against (default: `origin/main`)
|
|
117
|
+
- `--head <COMMIT>`: Head commit to compare (defaults to working tree)
|
|
111
118
|
- `--all`: Show all projects regardless of changes
|
|
112
119
|
- `--json`: Output results as JSON
|
|
113
120
|
- `--report <PATH>`: Generate a detailed analysis report
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@front-ops/domino",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "True Affected - Semantic change detection for monorepos",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -80,13 +80,13 @@
|
|
|
80
80
|
"typescript": "^5.9.2"
|
|
81
81
|
},
|
|
82
82
|
"optionalDependencies": {
|
|
83
|
-
"@front-ops/domino-win32-x64-msvc": "1.0
|
|
84
|
-
"@front-ops/domino-darwin-x64": "1.0
|
|
85
|
-
"@front-ops/domino-linux-x64-gnu": "1.0
|
|
86
|
-
"@front-ops/domino-linux-x64-musl": "1.0
|
|
87
|
-
"@front-ops/domino-darwin-arm64": "1.0
|
|
88
|
-
"@front-ops/domino-linux-arm64-musl": "1.0
|
|
89
|
-
"@front-ops/domino-linux-arm64-gnu": "1.0
|
|
83
|
+
"@front-ops/domino-win32-x64-msvc": "1.1.0",
|
|
84
|
+
"@front-ops/domino-darwin-x64": "1.1.0",
|
|
85
|
+
"@front-ops/domino-linux-x64-gnu": "1.1.0",
|
|
86
|
+
"@front-ops/domino-linux-x64-musl": "1.1.0",
|
|
87
|
+
"@front-ops/domino-darwin-arm64": "1.1.0",
|
|
88
|
+
"@front-ops/domino-linux-arm64-musl": "1.1.0",
|
|
89
|
+
"@front-ops/domino-linux-arm64-gnu": "1.1.0"
|
|
90
90
|
},
|
|
91
91
|
"lint-staged": {
|
|
92
92
|
"*.@(js|ts|tsx)": [
|