-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into output-compodoc-args
- Loading branch information
Showing
4,539 changed files
with
204,049 additions
and
113,584 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Bug report 🐞 | ||
description: >- | ||
Something is broken and you have a reliable reproduction? Let us know here. | ||
For questions, please use "Question" below. | ||
title: '[Bug]: ' | ||
labels: | ||
- needs triage | ||
- bug | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: >- | ||
Please create a reproduction by running `npx sb@next repro` and | ||
following the instructions. Read our | ||
[documentation](https://storybook.js.org/docs/react/contribute/how-to-reproduce) | ||
to learn more about creating reproductions. | ||
placeholder: >- | ||
Paste your repository and deployed reproduction here. We prioritize | ||
issues with reproductions over those without. | ||
render: shell | ||
- type: textarea | ||
id: system | ||
attributes: | ||
label: System | ||
description: Please paste the results of `npx sb@next info` here. | ||
render: shell | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Feature request 💡 | ||
description: Suggest an idea for this project | ||
title: '[Feature Request]:' | ||
labels: | ||
- needs triage | ||
- feature request | ||
body: | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe | ||
description: >- | ||
A clear and concise description of the problem. E.g. I'm always | ||
frustrated when [...] | ||
- type: textarea | ||
id: describe | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: What would you like to see added to Storybook to solve problem? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: Any alternative solutions or features you've considered. | ||
- type: dropdown | ||
id: help | ||
attributes: | ||
label: Are you able to assist to bring the feature to reality? | ||
options: | ||
- 'no' | ||
- yes, I can | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,10 +8,10 @@ jobs: | |
name: Danger JS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
- uses: actions/checkout@master | ||
node-version: '16' | ||
- uses: actions/checkout@v3 | ||
- name: Danger JS | ||
uses: danger/[email protected] | ||
env: | ||
|
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 |
---|---|---|
|
@@ -14,19 +14,25 @@ jobs: | |
runs-on: ubuntu-latest | ||
env: | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
CLEANUP_REPRO_NODE_MODULES: true | ||
steps: | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- uses: actions/checkout@v2 | ||
node-version: 16 | ||
- uses: actions/checkout@v3 | ||
- name: Setup git user | ||
run: | | ||
git config --global user.name "Storybook Bot" | ||
git config --global user.email "[email protected]" | ||
- name: Install dependencies | ||
run: node ./scripts/check-dependencies.js | ||
- name: Bootstrap Storybook libraries | ||
run: yarn bootstrap --prep | ||
- name: Compile Storybook libraries | ||
run: yarn task --task publish --start-from=auto --no-link | ||
- name: Running local registry | ||
run: yarn local-registry --port 6001 --open & | ||
working-directory: ./code | ||
- name: Wait for registry | ||
run: yarn wait-on http://localhost:6001 | ||
working-directory: ./code | ||
- name: Generate repros | ||
run: yarn generate-repros-next --local-registry | ||
|
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
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.