@eide/foir-cli 0.10.1 → 0.10.2
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/dist/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -64,6 +64,9 @@ function isTokenExpired(credentials) {
|
|
|
64
64
|
return Date.now() > expiresAt.getTime() - bufferMs;
|
|
65
65
|
}
|
|
66
66
|
var REPO_ROOT_MARKERS = [
|
|
67
|
+
// `.foir` first so a nested sub-project with its own `.foir/project.json`
|
|
68
|
+
// wins over a parent monorepo's `.git` or `foir.config.ts`.
|
|
69
|
+
".foir",
|
|
67
70
|
".git",
|
|
68
71
|
"foir.config.ts",
|
|
69
72
|
".foirrc.ts",
|