Skip to content

Commit e1b5cae

Browse files
committed
Merge branch 'main' into make-home-roller-title-more-responsive
# Conflicts: # packages/dev/s2-docs/pages/s2/home/Home.tsx
2 parents d559867 + 97717d7 commit e1b5cae

File tree

280 files changed

+6281
-5159
lines changed

Some content is hidden

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

280 files changed

+6281
-5159
lines changed

.circleci/config.yml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ jobs:
8585
executor: rsp-large
8686
steps:
8787
- checkout
88-
8988
- run:
9089
name: Write npmrc
9190
command: |
@@ -762,6 +761,28 @@ jobs:
762761
paths:
763762
- '*/verdaccio/publish-stats'
764763

764+
v-starters:
765+
executor: rsp-xlarge
766+
steps:
767+
- restore_cache:
768+
key: react-spectrum-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
769+
770+
- attach_workspace:
771+
at: /tmp/verdaccio-workspace
772+
773+
- run:
774+
name: build s2-next off verdaccio
775+
command: |
776+
./scripts/verdaccio-ci.sh
777+
./scripts/verdaccio-build-starters.sh
778+
environment:
779+
VERDACCIO_STORAGE_PATH: /tmp/verdaccio-workspace/storage
780+
781+
- persist_to_workspace:
782+
root: dist
783+
paths:
784+
- 's2-docs/'
785+
765786
deploy:
766787
docker:
767788
- image: mcr.microsoft.com/azure-cli:2.63.0
@@ -987,6 +1008,9 @@ workflows:
9871008
- v-webpack-4
9881009
- v-nextjs
9891010
- v-rsp-cra-18
1011+
- v-starters:
1012+
requires:
1013+
- verdaccio
9901014
- deploy:
9911015
requires:
9921016
- lint
@@ -1013,6 +1037,7 @@ workflows:
10131037
requires:
10141038
- s2-docs
10151039
- s2-docs-stage
1040+
- v-starters
10161041
filters:
10171042
branches:
10181043
only: main

.yarn/patches/@parcel-packager-react-static-npm-2.16.1-138e4b8f05.patch

Lines changed: 0 additions & 24 deletions
This file was deleted.

Makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ publish: build
9292
yarn publish
9393

9494
publish-nightly: build
95+
git update-index --refresh
9596
yarn version:nightly
9697
yarn publish:nightly
9798

@@ -123,7 +124,7 @@ website-production:
123124
mv starters/tailwind/react-aria-tailwind-starter.zip dist/production/docs/react-aria-tailwind-starter.$$(git rev-parse --short HEAD).zip
124125

125126
check-examples:
126-
node scripts/extractExamples.mjs
127+
node scripts/extractExamplesS2.mjs
127128
yarn tsc --project dist/docs-examples/tsconfig.json
128129

129130
starter:
@@ -157,7 +158,6 @@ s2-docs-stage:
157158
DOCS_ENV=stage PUBLIC_URL=/ $(MAKE) build-s2-docs
158159
cp packages/dev/docs/pages/disallow-robots.txt dist/s2-docs/react-aria/robots.txt
159160
cp packages/dev/docs/pages/disallow-robots.txt dist/s2-docs/s2/robots.txt
160-
$(MAKE) build-starters
161161

162162
s2-docs-production:
163163
DOCS_ENV=prod PUBLIC_URL=/ $(MAKE) build-s2-docs
@@ -187,7 +187,8 @@ build-s2-docs:
187187
build-starters:
188188
$(MAKE) starter-zip
189189
$(MAKE) tailwind-starter
190-
mv starters/docs/storybook-static dist/s2-docs/react-aria-starter
191-
mv starters/docs/react-aria-starter.zip dist/s2-docs/react-aria-starter.$$(git rev-parse --short HEAD).zip
192-
mv starters/tailwind/storybook-static dist/s2-docs/react-aria-tailwind-starter
193-
mv starters/tailwind/react-aria-tailwind-starter.zip dist/s2-docs/react-aria-tailwind-starter.$$(git rev-parse --short HEAD).zip
190+
mkdir -p dist/s2-docs/react-aria/$(PUBLIC_URL)
191+
mv starters/docs/storybook-static dist/s2-docs/react-aria/$(PUBLIC_URL)/react-aria-starter
192+
mv starters/docs/react-aria-starter.zip dist/s2-docs/react-aria/$(PUBLIC_URL)/react-aria-starter.$$(git rev-parse --short HEAD).zip
193+
mv starters/tailwind/storybook-static dist/s2-docs/react-aria/$(PUBLIC_URL)/react-aria-tailwind-starter
194+
mv starters/tailwind/react-aria-tailwind-starter.zip dist/s2-docs/react-aria/$(PUBLIC_URL)/react-aria-tailwind-starter.$$(git rev-parse --short HEAD).zip

bin/imports.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ const devDependencies = new Set([
2020
'@adobe/spectrum-css-temp',
2121
'@react-spectrum/style-macro-s1',
2222
'@parcel/macros',
23-
'@adobe/spectrum-tokens'
23+
'@adobe/spectrum-tokens',
24+
'playwright',
25+
'axe-playwright'
2426
]);
2527

2628
module.exports = {
-18.4 KB
Binary file not shown.

examples/rac-spectrum-tailwind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@spectrum-icons/illustrations": "latest",
1414
"@spectrum-icons/workflow": "latest",
1515
"@tailwindcss/postcss": "^4.0.0",
16-
"parcel": "^2.16.1",
16+
"parcel": "^2.16.3",
1717
"postcss": "^8.2.1",
1818
"react": "^18.2.0",
1919
"react-aria-components": "latest",

0 commit comments

Comments
 (0)