NickAkhmetov/Monorepo reorganization, eslint->biome, separate data loader packages, benchmarking#90
Draft
NickAkhmetov wants to merge 18 commits intonickakhmetov/export-fixesfrom
Draft
Conversation
…s, pull demo site into `sites` directory, fix eslint config
…s, pull demo site into `sites` directory, fix eslint config
f4a58bf to
8c4ce83
Compare
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.
This pull request introduces a monorepo structure for the Scellop project, adds a dedicated data loading package, and transitions the codebase to use Biome for linting and formatting instead of ESLint/Prettier. It also provides comprehensive developer documentation and updates project metadata and scripts to reflect the new structure and tooling.
Monorepo & Package Structure:
scellop-monorepo) and moved data loading utilities into a new package@scellop/data-loading, with its ownpackage.json, build scripts, and exports.package.jsonto manage all packages, scripts, and dependencies at the monorepo level.scellopand the data loading logic live in thepackagesfolderdemolives in the sites folderTooling & Linting Modernization:
biome.json) and removed all ESLint/Prettier configs and dependencies.Developer Experience & Documentation:
.github/copilot-instructions.md) explaining project architecture, state management, data schema, export pipeline, development workflow, testing, code conventions, and integration points..vscode/settings.jsonfor Biome integration and improved cSpell word list for project-specific terms.Data Loading Package:
@scellop/data-loading, including:DataLoaderandBaseDataLoaderinterfaces/classes for implementing new data sources.Cleanup & Miscellaneous:
Monorepo and Package Structure
scellop-monorepo), moving data loading utilities to a new package with its own build/test scripts and exports.package.jsonto manage scripts and dependencies for all packages.Tooling Modernization
biome.json.Developer Documentation
.github/copilot-instructions.md.Data Loading API
DataLoader,BaseDataLoader) and refactored data wrangling utilities for modularity and reuse.Cleanup
TODOs: