-
-
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 addon-themes-ownership
- Loading branch information
Showing
3,596 changed files
with
81,571 additions
and
81,788 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 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,4 @@ | ||
34e364a0ca1d93555d36a7367d78e8e229493de8 | ||
c0896915fb7fb9a8dd416b9aebca17abd909d1c1 | ||
a41c227037e7e7249b8b376f838f4f8bcc3e3e59 | ||
13c46e6c0b7f3dd8cf4ba42d1cfd6714f4777d54 |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
/**/.yarn/** linguist-generated | ||
* -text |
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 @@ | ||
body: | ||
- type: markdown | ||
id: intro | ||
attributes: | ||
value: | | ||
Thanks for taking the time to start a new discussion! | ||
### Before you post | ||
Check if someone has already asked/answered your question in a previous discussion. | ||
### When you're ready to post | ||
Add labels to your discussion (e.g. React, Vue, Vite) to make it clearer for other users. | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Summary | ||
description: How can we help? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: | | ||
Share Your Storybook configuration (`main.js` or `main.ts`), your Storybook version number, any error messages, and any relevant dependencies. These help us get a clearer understanding of what might be going wrong. | ||
P.S. Please [share code as text](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks) rather than as a screenshot! It makes debugging much easier and faster. | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: reproduction | ||
attributes: | ||
label: Create a reproduction | ||
description: | | ||
Help us debug by creating a minimal reproduction with [https://storybook.new](https://storybook.new). Learn more about creating a reproduction [here](https://storybook.js.org/docs/react/contribute/how-to-reproduce). | ||
validations: | ||
required: false |
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
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 |
---|---|---|
|
@@ -21,10 +21,10 @@ jobs: | |
name: Danger JS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- uses: actions/checkout@v3 | ||
node-version-file: '.nvmrc' | ||
- 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 |
---|---|---|
|
@@ -19,18 +19,21 @@ jobs: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
CLEANUP_SANDBOX_NODE_MODULES: true | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
- 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 | ||
run: | | ||
cd ./scripts | ||
node --experimental-modules ./check-dependencies.js | ||
cd .. | ||
- name: Compile Storybook libraries | ||
run: yarn task --task compile --start-from=auto --no-link | ||
- name: Publishing to local registry | ||
|
@@ -40,7 +43,7 @@ jobs: | |
run: yarn local-registry --open & | ||
working-directory: ./code | ||
- name: Wait for registry | ||
run: yarn wait-on http://localhost:6001 | ||
run: yarn wait-on tcp:127.0.0.1:6001 | ||
working-directory: ./code | ||
- name: Generate | ||
run: yarn generate-sandboxes --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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,18 +19,21 @@ jobs: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
CLEANUP_SANDBOX_NODE_MODULES: true | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: next | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
- 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 | ||
run: | | ||
cd ./scripts | ||
node --experimental-modules ./check-dependencies.js | ||
cd .. | ||
- name: Compile Storybook libraries | ||
run: yarn task --task compile --start-from=auto --no-link | ||
- name: Publishing to local registry | ||
|
@@ -40,10 +43,10 @@ jobs: | |
run: yarn local-registry --open & | ||
working-directory: ./code | ||
- name: Wait for registry | ||
run: yarn wait-on http://localhost:6001 | ||
run: yarn wait-on tcp:127.0.0.1:6001 | ||
working-directory: ./code | ||
- name: Generate | ||
run: yarn generate-sandboxes --local-registry | ||
run: yarn generate-sandboxes --local-registry --debug | ||
working-directory: ./code | ||
- name: Publish | ||
run: yarn publish-sandboxes --remote=https://storybook-bot:${{ secrets.PAT_STORYBOOK_BOT}}@github.com/storybookjs/sandboxes.git --push --branch=next | ||
|
Oops, something went wrong.