We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fc9e99 commit 609a391Copy full SHA for 609a391
lunaria/lunaria.ts
@@ -11,7 +11,12 @@ if (existsSync('.git/MERGE_HEAD')) {
11
process.exit(0)
12
}
13
14
-const lunaria = await createLunaria()
+const lunaria = await createLunaria({
15
+ // `force: true` configures lunaria to bypass git caching and always read the latest commit from git history,
16
+ // workarounds issue where lunaria caches becomes stale after rebasing or merging, which causes lunaria to crash
17
+ // https://github.com/npmx-dev/npmx.dev/issues/2527
18
+ force: true,
19
+})
20
const status = await lunaria.getFullStatus()
21
22
// Generate JSON status for the app
0 commit comments