Refactor#63
Merged
Merged
Conversation
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 major modernization and cleanup of the project's configuration, tooling, and workflows. The main focus is on updating dependencies, migrating build and linting tools to their latest versions, switching from Travis CI to GitHub Actions for CI/CD, and improving code quality and documentation standards. The Storybook configuration is also updated to the latest version and Vite support. Below are the most important changes grouped by theme:
Build and Tooling Modernization
.babelrc, updating presets and plugins for compatibility with latest standards..eslintrc.jsto modern syntax and improved rule definitions, including switching line endings to Unix style..prettierrc) and ignore file (.prettierignore) to enforce consistent code formatting. [1] [2].nvmrcto specify Node.js version 20 for development consistency.CI/CD and Automation
.travis.yml) with comprehensive GitHub Actions workflows for CI (.github/workflows/ci.yml), release (.github/workflows/release.yml), and Storybook deployment (.github/workflows/storybook.yml). [1] [2] [3] [4]actions/checkout@v5across all workflows. [1] [2] [3]Storybook Upgrade
.storybook/config.js,.storybook/addons.js,.storybook/stories.js) with new configuration files (.storybook/main.js,.storybook/preview.js). [1] [2] [3] [4] [5]Documentation and Community
CHANGELOG.mdfollowing Keep a Changelog format, and introduced contributing guidelines inCONTRIBUTING.md. [1] [2]General Maintenance
LICENSEand improved consistency in YAML configuration files. [1] [2]These changes collectively ensure the project is up-to-date, easier to maintain, and more welcoming to contributors.