Skip to content

Commit 7a5e585

Browse files
authoredDec 22, 2021
Upgrade Parcel and other dev dependencies (#2701)
1 parent d4669af commit 7a5e585

File tree

250 files changed

+4349
-5721
lines changed

Some content is hidden

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

250 files changed

+4349
-5721
lines changed
 

‎.circleci/comment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function run() {
1919
body: `Build successful! 🎉
2020
2121
* [View the storybook](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/storybook/index.html)
22-
* [View the storybook-17](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/storybook-17/index.html)
22+
* [View the storybook-16](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/storybook-16/index.html)
2323
* [View the documentation](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/docs/index.html)`
2424
});
2525
}

‎.circleci/config.yml

+27-27
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ orbs:
66
executors:
77
rsp:
88
docker:
9-
- image: cimg/node:12.22
9+
- image: cimg/node:14.16.0
1010
environment:
1111
CACHE_VERSION: v1
1212
working_directory: ~/react-spectrum
1313

1414
rsp-large:
1515
docker:
16-
- image: cimg/node:12.22
16+
- image: cimg/node:14.16.0
1717
resource_class: large
1818
environment:
1919
CACHE_VERSION: v1
2020
working_directory: ~/react-spectrum
2121

2222
rsp-xlarge:
2323
docker:
24-
- image: cimg/node:12.22
24+
- image: cimg/node:14.16.0
2525
resource_class: xlarge
2626
environment:
2727
CACHE_VERSION: v1
@@ -60,7 +60,7 @@ jobs:
6060
- ~/react-spectrum
6161
key: react-spectrum-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
6262

63-
install-17:
63+
install-16:
6464
executor: rsp-large
6565
steps:
6666
- checkout
@@ -73,12 +73,12 @@ jobs:
7373
- run:
7474
name: build
7575
command: |
76-
yarn install --pure-lockfile --cache-folder ~/.cache/yarn && yarn install-17 --cache-folder ~/.cache/yarn
76+
yarn install --pure-lockfile --cache-folder ~/.cache/yarn && yarn install-16 --cache-folder ~/.cache/yarn
7777
7878
- save_cache:
7979
paths:
8080
- ~/react-spectrum
81-
key: react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
81+
key: react-spectrum16-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
8282

8383
test-ssr:
8484
executor: rsp-xlarge
@@ -116,23 +116,23 @@ jobs:
116116
- store_artifacts:
117117
path: ~/junit
118118

119-
test-ssr-17:
119+
test-ssr-16:
120120
executor: rsp-xlarge
121121
steps:
122122
- restore_cache:
123-
key: react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
123+
key: react-spectrum16-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
124124

125125
- run:
126126
name: test ssr
127127
command: |
128128
yarn test:ssr
129129
130-
test-17:
130+
test-16:
131131
parallelism: 3
132132
executor: rsp-xlarge
133133
steps:
134134
- restore_cache:
135-
key: react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
135+
key: react-spectrum16-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
136136

137137
- run: mkdir ~/junit
138138

@@ -141,10 +141,10 @@ jobs:
141141
command: |
142142
shopt -s globstar
143143
TESTFILES=$(circleci tests glob "packages/**/*.test.[tj]{s,sx}" | circleci tests split --split-by=timings)
144-
JEST_JUNIT_OUTPUT_NAME="junit-17.xml" yarn test ${TESTFILES}
144+
JEST_JUNIT_OUTPUT_NAME="junit-16.xml" yarn test ${TESTFILES}
145145
146146
- run:
147-
command: cp junit-17.xml ~/junit/
147+
command: cp junit-16.xml ~/junit/
148148
when: always
149149
- store_test_results:
150150
path: ~/junit
@@ -176,20 +176,20 @@ jobs:
176176
paths:
177177
- '*/storybook/'
178178

179-
storybook-17:
179+
storybook-16:
180180
executor: rsp-large
181181
steps:
182182
- restore_cache:
183-
key: react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
183+
key: react-spectrum16-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
184184

185185
- run:
186-
name: build storybook-17
187-
command: make storybook-17
186+
name: build storybook-16
187+
command: make storybook-16
188188

189189
- persist_to_workspace:
190190
root: dist
191191
paths:
192-
- '*/storybook-17/'
192+
- '*/storybook-16/'
193193

194194
docs:
195195
executor: rsp-xlarge
@@ -275,28 +275,28 @@ workflows:
275275
commit:
276276
jobs:
277277
- install
278-
- install-17
278+
- install-16
279279
- test-ssr:
280280
requires:
281281
- install
282282
- test:
283283
requires:
284284
- install
285-
- test-ssr-17:
285+
- test-ssr-16:
286286
requires:
287-
- install-17
288-
- test-17:
287+
- install-16
288+
- test-16:
289289
requires:
290-
- install-17
290+
- install-16
291291
- lint:
292292
requires:
293293
- install
294294
- storybook:
295295
requires:
296296
- install
297-
- storybook-17:
297+
- storybook-16:
298298
requires:
299-
- install-17
299+
- install-16
300300
- docs:
301301
requires:
302302
- install
@@ -311,10 +311,10 @@ workflows:
311311
- lint
312312
- test-ssr
313313
- test
314-
- test-ssr-17
315-
- test-17
314+
- test-ssr-16
315+
- test-16
316316
- storybook
317-
- storybook-17
317+
- storybook-16
318318
- docs
319319
- deploy-production:
320320
filters:

0 commit comments

Comments
 (0)
Please sign in to comment.