build(deps): migrate from electron-store to electron-conf#62
Merged
flexiondotorg merged 2 commits intomainfrom Mar 27, 2026
Merged
build(deps): migrate from electron-store to electron-conf#62flexiondotorg merged 2 commits intomainfrom
flexiondotorg merged 2 commits intomainfrom
Conversation
Replaces electron-store v10 with electron-conf v1.3.0, eliminating ESM/CJS compatibility workarounds and enabling native TypeScript generics for type-safe configuration access. Both libraries use identical on-disk JSON format and near-identical APIs (get, set, has, delete, clear, store, path), so no data migration is required. electron-conf is purpose-built for Electron, dual-publishes CJS+ESM, and removes the require() workaround entirely. Updated references across config module, test setup, and test mocks. Signed-off-by: Martin Wimpress <code@wimpress.io>
Update all documentation references from `electron-store` to `electron-conf`. Includes AGENTS.md, SPECIFICATION.md (with version pin update to ^1.3.0), SECURITY-REPORT.md, and Sidra-vs-Cider-Comparison.md. Resolves documentation drift from runtime dependency migration. Signed-off-by: Martin Wimpress <code@wimpress.io>
Contributor
There was a problem hiding this comment.
0 issues found across 4 files (changes from recent commits).
Requires human review: Migrates a core production dependency (electron-store to electron-conf) responsible for all persistent application state, which requires human verification of library compatibility.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces electron-store v10 with electron-conf v1.3.0, eliminating ESM/CJS compatibility workarounds and enabling native TypeScript generics for type-safe configuration access.
Both libraries use identical on-disk JSON format and near-identical APIs (get, set, has, delete, clear, store, path), so no data migration is required. electron-conf is purpose-built for Electron, dual-publishes CJS+ESM, and removes the require() workaround entirely.
Updated references across config module, test setup, and test mocks.