mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Merge branch 'next' into yann/next-15-support
This commit is contained in:
commit
ac53a56ea3
@ -220,16 +220,42 @@ jobs:
|
|||||||
clone_options: "--depth 1 --verbose"
|
clone_options: "--depth 1 --verbose"
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: .
|
at: .
|
||||||
- run:
|
# if there is a base branch AND a PR number in parameters, benchmark packages against those
|
||||||
name: Benchmarking Packages
|
# this happens when run against a PR
|
||||||
working_directory: scripts
|
- when:
|
||||||
command: |
|
condition:
|
||||||
yarn local-registry --open &
|
and:
|
||||||
until curl -s http://localhost:6001 > /dev/null; do
|
- << pipeline.parameters.ghBaseBranch >>
|
||||||
echo 'Waiting for local registry to be available...'
|
- << pipeline.parameters.ghPrNumber >>
|
||||||
sleep 2
|
steps:
|
||||||
done
|
- run:
|
||||||
yarn bench-packages --baseBranch << pipeline.parameters.ghBaseBranch >> --pull-request << pipeline.parameters.ghPrNumber >> --upload
|
name: Benchmarking packages against base branch
|
||||||
|
working_directory: scripts
|
||||||
|
command: |
|
||||||
|
yarn local-registry --open &
|
||||||
|
until curl -s http://localhost:6001 > /dev/null; do
|
||||||
|
echo 'Waiting for local registry to be available...'
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
yarn bench-packages --base-branch << pipeline.parameters.ghBaseBranch >> --pull-request << pipeline.parameters.ghPrNumber >> --upload
|
||||||
|
# if there is a NOT a base branch OR NOT a PR number in parameters, just upload benchmarks for the branch
|
||||||
|
# this happens when runned directly on branches, like next or main
|
||||||
|
- when:
|
||||||
|
condition:
|
||||||
|
or:
|
||||||
|
- not: << pipeline.parameters.ghBaseBranch >>
|
||||||
|
- not: << pipeline.parameters.ghPrNumber >>
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: Uploading package benchmarks for branch
|
||||||
|
working_directory: scripts
|
||||||
|
command: |
|
||||||
|
yarn local-registry --open &
|
||||||
|
until curl -s http://localhost:6001 > /dev/null; do
|
||||||
|
echo 'Waiting for local registry to be available...'
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
yarn bench-packages --upload
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: bench/packages/results.json
|
path: bench/packages/results.json
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
|
@ -14,7 +14,7 @@ interface UpgradeBlockProps {
|
|||||||
|
|
||||||
export const UpgradeBlock: FC<UpgradeBlockProps> = ({ onNavigateToWhatsNew }) => {
|
export const UpgradeBlock: FC<UpgradeBlockProps> = ({ onNavigateToWhatsNew }) => {
|
||||||
const api = useStorybookApi();
|
const api = useStorybookApi();
|
||||||
const [activeTab, setActiveTab] = useState<'npm' | 'pnpm'>('npm');
|
const [activeTab, setActiveTab] = useState<'npm' | 'yarn' | 'pnpm'>('npm');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
@ -24,12 +24,17 @@ export const UpgradeBlock: FC<UpgradeBlockProps> = ({ onNavigateToWhatsNew }) =>
|
|||||||
<ButtonTab active={activeTab === 'npm'} onClick={() => setActiveTab('npm')}>
|
<ButtonTab active={activeTab === 'npm'} onClick={() => setActiveTab('npm')}>
|
||||||
npm
|
npm
|
||||||
</ButtonTab>
|
</ButtonTab>
|
||||||
|
<ButtonTab active={activeTab === 'yarn'} onClick={() => setActiveTab('yarn')}>
|
||||||
|
yarn
|
||||||
|
</ButtonTab>
|
||||||
<ButtonTab active={activeTab === 'pnpm'} onClick={() => setActiveTab('pnpm')}>
|
<ButtonTab active={activeTab === 'pnpm'} onClick={() => setActiveTab('pnpm')}>
|
||||||
pnpm
|
pnpm
|
||||||
</ButtonTab>
|
</ButtonTab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
<Code>
|
<Code>
|
||||||
{activeTab === 'npm' ? 'npx storybook@latest upgrade' : 'pnpm dlx storybook@latest upgrade'}
|
{activeTab === 'npm'
|
||||||
|
? 'npx storybook@latest upgrade'
|
||||||
|
: `${activeTab} dlx storybook@latest upgrade`}
|
||||||
</Code>
|
</Code>
|
||||||
{onNavigateToWhatsNew && (
|
{onNavigateToWhatsNew && (
|
||||||
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
||||||
|
@ -370,7 +370,7 @@ const uploadToGithub = async ({
|
|||||||
const run = async () => {
|
const run = async () => {
|
||||||
program
|
program
|
||||||
.option(
|
.option(
|
||||||
'-b, --baseBranch <string>',
|
'-b, --base-branch <string>',
|
||||||
'The base branch to compare the results with. Requires GCP_CREDENTIALS env var'
|
'The base branch to compare the results with. Requires GCP_CREDENTIALS env var'
|
||||||
)
|
)
|
||||||
.option(
|
.option(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user