update all packages#157
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR, titled "update all packages," streamlines the repository by removing legacy configuration files and updating documentation to match a new Storybook React template. Key changes include the removal of the files list (files.ts) and outdated configuration files (e.g., webpack, ESLint, Prettier, Storybook config), plus a comprehensive refresh of the README and license information.
Reviewed Changes
Copilot reviewed 236 out of 236 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| files.ts | Removed the file list; ensure no tooling relies on these file paths. |
| README.md | Updated documentation to reflect the new Storybook React template and dependency installation flow. |
| LICENSE | Updated licensing header and copyright information. |
| CHANGELOG.md | Removed the changelog; assess if historical change context is maintained elsewhere. |
| .yarnrc.yml | Introduced new Yarn configuration. |
| .vscode/settings.json | Removed VS Code settings. |
| .storybook/webpack.config.js | Removed legacy webpack config in favor of updated Storybook configuration with Vite. |
| .storybook/preview.ts | Added new Storybook preview configuration. |
| .storybook/main.ts | Added new Storybook main configuration. |
| .storybook/config.js | Removed legacy Storybook configuration. |
| .storybook/addons.js | Removed legacy Storybook addons registration. |
| .prettierrc.js | Removed Prettier configuration. |
| .eslintrc.js | Removed old ESLint configuration in favor of a new configuration. |
| .eslintrc.cjs | Added new ESLint configuration. |
Comments suppressed due to low confidence (5)
files.ts:1
- The removal of the files array suggests these paths are no longer needed; please verify that no build scripts or tools rely on this file.
const files = [
CHANGELOG.md:1
- Removing CHANGELOG.md might hinder users from tracking historical changes; consider preserving it or linking to another detailed changelog medium.
# Changelog
.eslintrc.js:1
- Since .eslintrc.js has been removed in favor of .eslintrc.cjs, please ensure that all linting scripts and editor integrations are updated accordingly.
module.exports = {
.storybook/config.js:1
- Ensure that Storybook configuration has been fully migrated to the new main.ts and preview.ts setup so that no legacy config is inadvertently referenced.
import { configure, addDecorator } from "@storybook/react";
.storybook/addons.js:1
- Verify that the Storybook addons configuration is now handled in the updated setup and that removal of this file will not affect addon registration.
import "@storybook/addon-actions/register";
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.
No description provided.