-
Notifications
You must be signed in to change notification settings - Fork 4
Upgrade addon to be compatible with Storybook v10 #33
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c4d50df
Upgrade addon to be compatible with Storybook v10
MaxLikesCode b2011b8
upgrade
ndelangen c88d1a2
Merge branch 'norbert/upgrade-to-support-sb10' into pr/MaxLikesCode/33
ndelangen b3e19c1
Remove .prettierignore file and adjust package.json to maintain picoc…
ndelangen f3098b0
Update pnpm-lock.yaml to standardize resolution formatting and ensure…
ndelangen 4262b95
Apply suggestions from code review
ndelangen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 20 | ||
| 22 | ||
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,6 @@ | ||
| {} | ||
| { | ||
| "trailingComma": "es5", | ||
| "singleQuote": true, | ||
| "printWidth": 120, | ||
| "tabWidth": 2 | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "typescript.tsdk": "node_modules/typescript/lib" | ||
| } |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| module.exports = { | ||
| baseBranch: "main", | ||
| export default { | ||
| baseBranch: 'main', | ||
| labels: [ | ||
| { | ||
| name: "documentation", | ||
| releaseType: "none", | ||
| name: 'documentation', | ||
| releaseType: 'none', | ||
| }, | ||
| ], | ||
| prereleaseBranches: ["next", "prerelease"], | ||
| prereleaseBranches: ['next', 'prerelease'], | ||
| versionBranches: true, | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,23 +18,19 @@ | |
| "name": "Shaun Evening", | ||
| "email": "[email protected]" | ||
| }, | ||
| "type": "module", | ||
| "exports": { | ||
| ".": { | ||
| "types": "./dist/index.d.ts", | ||
| "require": "./dist/index.js", | ||
| "import": "./dist/index.mjs" | ||
| "default": "./dist/index.js" | ||
| }, | ||
| "./preset": { | ||
| "types": "./dist/preset.d.ts", | ||
| "require": "./dist/preset.js", | ||
| "import": "./dist/preset.mjs" | ||
| "default": "./dist/preset.js" | ||
| }, | ||
| "./package.json": "./package.json", | ||
| "./postinstall": "./postinstall.js" | ||
| }, | ||
| "main": "dist/index.js", | ||
| "module": "dist/index.mjs", | ||
| "types": "dist/index.d.ts", | ||
| "files": [ | ||
| "bin/**/*", | ||
| "dist/**/*", | ||
|
|
@@ -45,20 +41,22 @@ | |
| "scripts": { | ||
| "build": "tsup", | ||
| "build:watch": "pnpm build --watch", | ||
| "format": "prettier --write .", | ||
| "release": "auto shipit" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^22.15.29", | ||
| "auto": "^11.3.0", | ||
| "picocolors": "^1.1.0", | ||
| "prettier": "^3.5.3", | ||
| "rimraf": "^6.0.1", | ||
| "storybook": "^9.0.4", | ||
| "storybook": "^10.0.0", | ||
| "tsup": "^8.5.0", | ||
| "typescript": "^5.8.3", | ||
| "typescript": "^5.9.3", | ||
| "webpack": "^5.99.9" | ||
| }, | ||
| "peerDependencies": { | ||
| "storybook": "^9.0.0", | ||
| "storybook": "^10.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0", | ||
| "webpack": "^5.0.0" | ||
| }, | ||
| "packageManager": "[email protected]+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6", | ||
|
|
||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.