Skip to content

Commit 9686085

Browse files
add all S2 components to example apps (#7027)
* add s2 components to Parcel app * add components to Webpack example * add to verdaccio build * build verdaccio on branch * try adding yarn config * fix yarn * add build script to parcel all * typo in path * enable comment on PR * comment on PR * try removing typekits * update webpack render to createRoot * try removing TagGroup * remove TagGroup from example apps * add branch filters back * update example app S2 versions to be "latest" * add TagGroup back * remove branch filters * Revert "remove branch filters" This reverts commit b7b54fe. * Fix style publishing * turn on verdaccio * Revert "turn on verdaccio" This reverts commit 3be5f9c. --------- Co-authored-by: GitHub <[email protected]>
1 parent 120e7b1 commit 9686085

File tree

20 files changed

+2707
-24
lines changed

20 files changed

+2707
-24
lines changed

.circleci/comment.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ async function run() {
5252
[NextJS Test App](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/next/index.html)
5353
[RAC Tailwind Example](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/rac-tailwind/index.html)
5454
[RAC Spectrum + Tailwind Example](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/rac-spectrum-tailwind/index.html)
55+
[S2 Parcel Example](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/s2-parcel-example/index.html)
56+
[S2 Webpack Example](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/s2-webpack-5-example/index.html)
5557
[CRA Test App Size](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/publish-stats/build-stats.txt)
5658
[NextJS App Size](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/publish-stats/next-build-stats.txt)
5759
[Publish stats](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/publish-stats/publish.json)

examples/s2-parcel-example/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
.DS_Store
22
node_modules
33
package-lock.json
4-
yarn.lock

examples/s2-parcel-example/.yarn/releases/yarn-4.2.2.cjs

Lines changed: 894 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.2.2.cjs
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
2+
"packageManager": "[email protected]",
23
"devDependencies": {
34
"parcel": "^2.12.0",
45
"process": "^0.11.10"
56
},
67
"dependencies": {
7-
"@react-spectrum/s2": "^0.0.0",
8+
"@react-spectrum/s2": "latest",
89
"react": "^18.2.0",
910
"react-dom": "^18.2.0"
1011
},
1112
"scripts": {
12-
"dev": "parcel src/index.html"
13+
"dev": "parcel src/index.html",
14+
"build": "parcel build src/index.html"
1315
}
1416
}

0 commit comments

Comments
 (0)