Skip to content

Commit ee86c58

Browse files
authored
Merge branch 'next' into shilman/reduce-publish-size
2 parents 2750ebd + 3a26f15 commit ee86c58

File tree

122 files changed

+456
-267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+456
-267
lines changed

.circleci/config.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,25 @@ jobs:
183183
git diff --exit-code
184184
- report-workflow-on-failure
185185
- cancel-workflow-on-failure
186-
script-unit-tests:
186+
script-checks:
187187
executor: sb_node_16_browsers
188188
steps:
189189
- git-shallow-clone/checkout_advanced:
190190
clone_options: '--depth 1 --verbose'
191191
- attach_workspace:
192192
at: .
193193
- run:
194-
name: Test
194+
name: Check parallelism count
195+
command: |
196+
cd scripts
197+
yarn get-template --check
198+
- run:
199+
name: Type check
200+
command: |
201+
cd scripts
202+
yarn check
203+
- run:
204+
name: Run tests
195205
command: |
196206
cd scripts
197207
yarn test --coverage --ci
@@ -479,7 +489,7 @@ workflows:
479489
- unit-tests:
480490
requires:
481491
- build
482-
- script-unit-tests:
492+
- script-checks:
483493
requires:
484494
- build
485495
- chromatic-internal-storybooks:
@@ -535,7 +545,7 @@ workflows:
535545
- unit-tests:
536546
requires:
537547
- build
538-
- script-unit-tests:
548+
- script-checks:
539549
requires:
540550
- build
541551
- chromatic-internal-storybooks:
@@ -592,7 +602,7 @@ workflows:
592602
- unit-tests:
593603
requires:
594604
- build
595-
- script-unit-tests:
605+
- script-checks:
596606
requires:
597607
- build
598608
- chromatic-internal-storybooks:

CHANGELOG.md

Lines changed: 6 additions & 2 deletions

CHANGELOG.prerelease.md

Lines changed: 4 additions & 0 deletions

CONTRIBUTING.md

Lines changed: 12 additions & 0 deletions

code/addons/a11y/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-a11y",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Test component compliance with web accessibility standards",
55
"keywords": [
66
"a11y",

code/addons/actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-actions",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Get UI feedback when an action is performed on an interactive element",
55
"keywords": [
66
"storybook",

code/addons/backgrounds/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-backgrounds",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Switch backgrounds to view components in different settings",
55
"keywords": [
66
"addon",

code/addons/controls/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-controls",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Interact with component inputs dynamically in the Storybook UI",
55
"keywords": [
66
"addon",

code/addons/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-docs",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Document component usage and properties in Markdown",
55
"keywords": [
66
"addon",

code/addons/essentials/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-essentials",
3-
"version": "7.3.0",
3+
"version": "7.4.0-alpha.0",
44
"description": "Curated addons to bring out the best of Storybook",
55
"keywords": [
66
"addon",

0 commit comments

Comments
 (0)