enablement-build-monorepo-version 2.0.2 → 2.0.4

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Contributors
3
+ Copyright (c) 2026 Chris Doty
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enablement-build-monorepo-version",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "This detects changes in the children packages of a monorepo.",
5
5
  "type": "module",
6
6
  "module": "./src/index.mjs",
package/src/index.mjs CHANGED
@@ -290,7 +290,7 @@ if (process.argv.length === 2) {
290
290
  }
291
291
  }
292
292
 
293
- const hasGitHub = existsSync(path.join(options.prefixPath, '.github'));
293
+ const hasGitHub = existsSync(path.join(options.prefixPath, '.github/hash.json'));
294
294
  if (!options.hashFile) {
295
295
  options.hashFile = hasGitHub ? '.github/hash.json' : '.cicd/hash.json';
296
296
  }