@front-ops/domino 1.1.0 → 1.2.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.
Files changed (2) hide show
  1. package/index.d.ts +6 -0
  2. package/package.json +8 -8
package/index.d.ts CHANGED
@@ -13,15 +13,21 @@ export declare function findAffected(options: FindAffectedOptions): AffectedResu
13
13
  export interface FindAffectedOptions {
14
14
  cwd: string
15
15
  base: string
16
+ /** Head commit to compare (defaults to working tree) */
17
+ head?: string
16
18
  rootTsConfig?: string
17
19
  projects: Array<NapiProject>
18
20
  include?: Array<string>
19
21
  ignoredPaths?: Array<string>
20
22
  enableProfiling?: boolean
23
+ /** Lockfile change detection strategy: "none", "direct", "full" (default: "direct") */
24
+ lockfileStrategy?: string
21
25
  }
22
26
 
23
27
  export interface NapiProject {
24
28
  name: string
29
+ /** Project root directory (where project.json lives). Falls back to source_root if not set. */
30
+ root?: string
25
31
  sourceRoot: string
26
32
  tsConfig?: string
27
33
  implicitDependencies: Array<string>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@front-ops/domino",
3
- "version": "1.1.0",
3
+ "version": "1.2.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.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"
83
+ "@front-ops/domino-win32-x64-msvc": "1.2.0",
84
+ "@front-ops/domino-darwin-x64": "1.2.0",
85
+ "@front-ops/domino-linux-x64-gnu": "1.2.0",
86
+ "@front-ops/domino-linux-x64-musl": "1.2.0",
87
+ "@front-ops/domino-darwin-arm64": "1.2.0",
88
+ "@front-ops/domino-linux-arm64-musl": "1.2.0",
89
+ "@front-ops/domino-linux-arm64-gnu": "1.2.0"
90
90
  },
91
91
  "lint-staged": {
92
92
  "*.@(js|ts|tsx)": [