Skip to content

Commit ee53a79

Browse files
authored
chore: Lockfiles for all apps (#8940)
* chore: lockfile for all apps * turn on verdaccio * set hoisting limit * build starters outside root workspace * fix indentation * force dependency update to latest * try another command * try yet another command * fix paths * fix more paths * reduce complexity and force upgrade locally * Revert "turn on verdaccio" This reverts commit 5bff9d5. * force update all versions in all example apps * turn on verdaccio * fix webpack 4 app * fix icon builder * try cache cleaning * force npx to use local verdaccio registry * try another method of forcing the registry * specify a specific version for the tool * debugging * remove debug statement * Revert "turn on verdaccio" This reverts commit 37e6c89. * turn on verdaccio * Revert "turn on verdaccio" This reverts commit ca2faf9. * turn on verdaccio * add debugging * one more debug line * Revert "turn on verdaccio" This reverts commit 622ad5e.
1 parent e06269f commit ee53a79

Some content is hidden

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

55 files changed

+165566
-53
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ check-examples:
118118
yarn tsc --project dist/docs-examples/tsconfig.json
119119

120120
starter:
121-
cd starters/docs && yarn --no-immutable && yarn tsc
121+
cd starters/docs && yarn --no-immutable && yarn up react-aria-components && yarn tsc
122122

123123
starter-zip: starter
124124
cp LICENSE starters/docs/.
@@ -129,7 +129,8 @@ starter-zip: starter
129129

130130
tailwind-starter:
131131
cp LICENSE starters/tailwind/.
132-
cd starters/tailwind && yarn --no-immutable && yarn tsc
132+
cd starters/tailwind && yarn --no-immutable && yarn up react-aria-components && yarn up tailwindcss-react-aria-components && yarn tsc
133+
133134
cd starters/tailwind && zip -r react-aria-tailwind-starter.zip . -x .gitignore .DS_Store "node_modules/*" "storybook-static/*"
134135
mv starters/tailwind/react-aria-tailwind-starter.zip dist/production/docs/react-aria-tailwind-starter.$$(git rev-parse --short HEAD).zip
135136
cd starters/tailwind && yarn build-storybook

examples/next-app-csp/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"next": "14.2.32",
1213
"react": "^18",
13-
"react-dom": "^18",
14-
"next": "14.0.3"
14+
"react-dom": "^18"
1515
},
1616
"devDependencies": {
17-
"typescript": "^5",
1817
"@types/node": "^20",
1918
"@types/react": "^18",
2019
"@types/react-dom": "^18",
21-
"glob": "^10.3.12"
20+
"glob": "^11.0.3",
21+
"typescript": "^5"
2222
},
2323
"workspaces": [
2424
"../../packages/react-aria-components",

0 commit comments

Comments
 (0)