opencode-codebase-index 0.8.0 → 0.8.1

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 CHANGED
@@ -969,6 +969,7 @@ To ensure release notes reflect all merged work, this repo uses a draft-release
969
969
  - PRs are validated by CI (`Release Label Check`) and fail if no release category label is present
970
970
  2. **Let Release Drafter build the draft notes** automatically from merged PRs on `main`.
971
971
  3. **Before publishing**:
972
+ - compare `git log --oneline vX.Y.Z..HEAD` (or the previous release tag range) against the draft release notes so the release summary covers the full shipped delta, not just the current `CHANGELOG.md` `Unreleased` section
972
973
  - copy/finalize relevant highlights into `CHANGELOG.md`
973
974
  - bump `package.json` version
974
975
  - run: `npm run build && npm run typecheck && npm run lint && npm run test:run`
package/dist/cli.cjs CHANGED
@@ -5886,6 +5886,7 @@ var Indexer = class {
5886
5886
  }
5887
5887
  atomicWriteSync(targetPath, data) {
5888
5888
  const tempPath = `${targetPath}.tmp`;
5889
+ (0, import_fs7.mkdirSync)(path8.dirname(targetPath), { recursive: true });
5889
5890
  (0, import_fs7.writeFileSync)(tempPath, data);
5890
5891
  (0, import_fs7.renameSync)(tempPath, targetPath);
5891
5892
  }