-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes the following problems: - "TypeError: Cannot read properties of undefined" occurred in Renderer.stories.js - docs.autodocs setting that was added by `npx storybook@latest upgrade` in PR #1419 is not needed and commented out. - "build-dev" in packages/core did not generate type definitions and build-dev failed in packages/react. - microbundle-crl is old and not maintained, so it should be replaced with microbundle.
- Loading branch information
1 parent
2a86d2c
commit e7ef7f9
Showing
4 changed files
with
200 additions
and
954 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
"version": "2.30.5", | ||
"author": "Yasuaki Uechi <[email protected]>", | ||
"scripts": { | ||
"build": "microbundle-crl --format modern,cjs && shx rm -rf dist/stories", | ||
"build-dev": "microbundle-crl --no-compress --format cjs", | ||
"build": "microbundle --format modern,cjs && shx rm -rf dist/stories", | ||
"build-dev": "microbundle --no-compress --format cjs", | ||
"build-storybook": "storybook build", | ||
"clean": "shx rm -rf dist", | ||
"dev": "yarn storybook", | ||
|
@@ -36,7 +36,7 @@ | |
"@types/jest": "^29.5.14", | ||
"@types/react": "^18.0.27", | ||
"cross-env": "^7.0.2", | ||
"microbundle-crl": "^0.13.10", | ||
"microbundle": "^0.15.1", | ||
"npm-run-all": "^4.1.5", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
|
This file contains 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
Oops, something went wrong.