Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0183742
chore: lockfile for all apps
snowystinger Sep 29, 2025
5bff9d5
turn on verdaccio
snowystinger Sep 24, 2025
12dbb53
set hoisting limit
snowystinger Sep 29, 2025
6fd03ad
build starters outside root workspace
snowystinger Sep 29, 2025
709ca01
fix indentation
snowystinger Sep 29, 2025
46f8095
force dependency update to latest
snowystinger Sep 29, 2025
4fccd31
try another command
snowystinger Sep 29, 2025
dcc467c
try yet another command
snowystinger Sep 29, 2025
623d284
fix paths
snowystinger Sep 29, 2025
e5b1716
fix more paths
snowystinger Sep 29, 2025
c73e1cc
reduce complexity and force upgrade locally
snowystinger Sep 29, 2025
637a5dd
Revert "turn on verdaccio"
snowystinger Sep 29, 2025
dc2c64f
Merge branch 'main' into lockfiles-for-all-apps
snowystinger Sep 29, 2025
e737f6a
force update all versions in all example apps
snowystinger Oct 3, 2025
37e6c89
turn on verdaccio
snowystinger Sep 24, 2025
d2e60a4
fix webpack 4 app
snowystinger Oct 3, 2025
e79be78
fix icon builder
snowystinger Oct 3, 2025
975c021
try cache cleaning
snowystinger Oct 6, 2025
02e2266
force npx to use local verdaccio registry
snowystinger Oct 6, 2025
f1d7373
try another method of forcing the registry
snowystinger Oct 6, 2025
9e3a093
specify a specific version for the tool
snowystinger Oct 6, 2025
9f0f794
debugging
snowystinger Oct 7, 2025
c09bf2b
Merge branch 'main' into lockfiles-for-all-apps
snowystinger Oct 7, 2025
7dfaf2d
remove debug statement
snowystinger Oct 7, 2025
f6d6e62
Revert "turn on verdaccio"
snowystinger Oct 7, 2025
ca2faf9
turn on verdaccio
snowystinger Sep 24, 2025
e8c35bb
Revert "turn on verdaccio"
snowystinger Oct 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ check-examples:
yarn tsc --project dist/docs-examples/tsconfig.json

starter:
cd starters/docs && yarn --no-immutable && yarn tsc
cd starters/docs && yarn --no-immutable && yarn up react-aria-components && yarn tsc
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this forces the update from the version provided by the root workspace, to the latest tag on verdaccio. I'm not sure why there is no way to override this yarn behaviour and not look at the root workspace at all, but this appears to be the case currently. I think due to yarnpkg/yarn#4099


starter-zip: starter
cp LICENSE starters/docs/.
Expand All @@ -129,7 +129,8 @@ starter-zip: starter

tailwind-starter:
cp LICENSE starters/tailwind/.
cd starters/tailwind && yarn --no-immutable && yarn tsc
cd starters/tailwind && yarn --no-immutable && yarn up react-aria-components && yarn up tailwindcss-react-aria-components && yarn tsc

cd starters/tailwind && zip -r react-aria-tailwind-starter.zip . -x .gitignore .DS_Store "node_modules/*" "storybook-static/*"
mv starters/tailwind/react-aria-tailwind-starter.zip dist/production/docs/react-aria-tailwind-starter.$$(git rev-parse --short HEAD).zip
cd starters/tailwind && yarn build-storybook
Expand Down
8 changes: 4 additions & 4 deletions examples/next-app-csp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"lint": "next lint"
},
"dependencies": {
"next": "14.2.32",
"react": "^18",
"react-dom": "^18",
"next": "14.0.3"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"glob": "^10.3.12"
"glob": "^11.0.3",
"typescript": "^5"
},
"workspaces": [
"../../packages/react-aria-components",
Expand Down
Loading