-
-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(storybook-addon): refactor util withModuleFederation
#829
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,17 +58,16 @@ | |
"@jscutlery/semver": "^2.27.1", | ||
"@node-rs/jieba": "^1.6.2", | ||
"@nrwl/cli": "15.9.2", | ||
"@nrwl/eslint-plugin-nx": "15.9.2", | ||
"@nrwl/jest": "15.9.2", | ||
"@nrwl/js": "15.9.2", | ||
"@nrwl/linter": "15.9.2", | ||
"@nrwl/next": "15.9.2", | ||
"@nrwl/react": "15.9.2", | ||
"@nrwl/storybook": "^15.9.2", | ||
"@nrwl/vite": "15.9.2", | ||
"@nrwl/web": "15.9.2", | ||
"@nrwl/webpack": "15.9.2", | ||
"@nrwl/workspace": "15.9.2", | ||
"@nrwl/eslint-plugin-nx": "16.0.0", | ||
"@nrwl/jest": "16.0.0", | ||
"@nrwl/js": "16.0.0", | ||
"@nrwl/linter": "16.0.0", | ||
"@nrwl/next": "16.0.0", | ||
"@nrwl/react": "16.0.0", | ||
"@nrwl/storybook": "^16.0.0", | ||
"@nrwl/vite": "16.0.0", | ||
"@nrwl/web": "16.0.0", | ||
"@nrwl/webpack": "16.0.0", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7", | ||
"@storybook/addon-essentials": "^6.5.15", | ||
"@storybook/builder-webpack5": "^6.5.15", | ||
|
@@ -122,7 +121,7 @@ | |
"merge-stream": "~2.0", | ||
"ngx-deploy-npm": "^5.0.0", | ||
"nodejieba": "^2.6.0", | ||
"nx": "15.9.2", | ||
"nx": "16.0.0", | ||
"postcss-calc": "~8.2.0", | ||
"postcss-custom-properties": "~13.1.0", | ||
"postcss-import": "~15.1.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code patch appears to be a dependency update in the package.json file. It updates various |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@module-federation/storybook-addon", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Storybook addon to consume remote module federated apps/components", | ||
"license": "MIT", | ||
"repository": "https://github.com/module-federation/universe/tree/main/packages/storybook-addon", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not a code patch, but rather a patch file containing changes to a package.json file. The only change in this patch is the version number, which has been updated from "0.1.0" to "0.1.1". There are no bug risks associated with this change and it is a common practice to update the version number when making changes to a package. Improvement suggestions would depend on the context of this package and its usage, but without more information, it is difficult to provide specific suggestions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. my release system automatically incrementes package versions |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that this is not actually code but rather a markdown document, likely related to a project's documentation or readme file.
As for the content itself, it looks like a brief introduction to a project, specifically mentioning its use of Nx and Next.js. There is also a note about generating an application using the
nx g
command.Without additional context, it is difficult to provide specific feedback or improvements. However, listing out the changes made in the code patch would be helpful in understanding any potential risks or opportunities for improvement.