Conversation
* upgrade node version * fix(ci): use Node.js 22 in automatic test workflow Agent-Logs-Url: https://github.com/helsingborg-stad/haffa-web/sessions/4231600d-4da7-43b2-a402-96049f266917 Co-authored-by: petter-a <40427478+petter-a@users.noreply.github.com> --------- Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
* initial commit * test(string-utils): cover isValidColorOr fallback behavior Agent-Logs-Url: https://github.com/helsingborg-stad/haffa-web/sessions/9320f365-06cc-4b49-83c2-1dd1adf8d749 Co-authored-by: petter-a <40427478+petter-a@users.noreply.github.com> --------- Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
* initial commit * chore(pr): finalize review comment analysis Agent-Logs-Url: https://github.com/helsingborg-stad/haffa-web/sessions/d55c24ae-3a8f-40db-afde-806d893ea7a0 Co-authored-by: petter-a <40427478+petter-a@users.noreply.github.com> * chore(pr): remove unintended lockfile changes Agent-Logs-Url: https://github.com/helsingborg-stad/haffa-web/sessions/d55c24ae-3a8f-40db-afde-806d893ea7a0 Co-authored-by: petter-a <40427478+petter-a@users.noreply.github.com> * fix(vite): avoid loading all env vars in config Agent-Logs-Url: https://github.com/helsingborg-stad/haffa-web/sessions/a94739ed-eb0f-4fa8-ad58-b4b8d052853a Co-authored-by: petter-a <40427478+petter-a@users.noreply.github.com> --------- Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
* initial commit * fix: move index.html to root as required by vite --------- Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se>
* change yarn to npm * fix npm bug * fix npm bug * fix npm bug --------- Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se>
Co-authored-by: Petter Andersson <petter.andersson@helsingborg.se>
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 makes a major shift in the project's frontend tooling and build system. It migrates the project from Yarn, ESLint, and Prettier to npm, Vite, and Biome, updates Node.js to version 22, and removes legacy configuration files. The changes also update dependencies, scripts, and documentation to reflect the new stack.
Build system and tooling migration:
.github/workflows/automatic-tests.yml,Dockerfile,Dockerfile.local,README.md, [1] [2] [3] [4] [5]package.jsonand removing CRA-specific files and references. (package.json,public/index.html,index.html, [1] [2] [3]Linting and formatting:
biome.jsonconfig and updating VSCode extension recommendations. (.eslintrc.js,.prettierrc.js,package.json,biome.json,.vscode/extensions.json, [1] [2] [3] [4] [5]Node.js and dependency updates:
.nvmrc, andpackage.jsonengines. (Dockerfile,Dockerfile.local,.nvmrc,package.json, [1] [2] [3] [4]@yudiel/react-qr-scanner,@types/node, and others. (package.json, [1] [2]Codebase cleanup and minor fixes:
typekeyword for better compatibility and clarity. (src/App.tsx,src/admin/AdminButton.tsx,src/admin/AdminView.tsx, [1] [2] [3]src/App.tsx, src/App.tsxL94-R93)These changes modernize the project's frontend workflow, improve performance and developer experience, and simplify configuration management.