Skip to content

Commit e05bbbe

Browse files
committed
add a comment
1 parent dea7cd7 commit e05bbbe

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

tasks/e2e-kitchensink.sh

+3
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,9 @@ E2E_FILE=./build/index.html \
247247
# Eject...
248248
echo yes | npm run eject
249249

250+
# Ensure Yarn is ran after eject; at the time of this commit, we don't run Yarn
251+
# after ejecting. Soon, we may only skip Yarn on Windows. Let's try to remove
252+
# this in the near future.
250253
if hash yarnpkg 2>/dev/null
251254
then
252255
yarn install --check-files

tasks/e2e-simple.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,12 @@ verify_module_scope
331331
# Eject...
332332
echo yes | npm run eject
333333

334+
# Ensure Yarn is ran after eject; at the time of this commit, we don't run Yarn
335+
# after ejecting. Soon, we may only skip Yarn on Windows. Let's try to remove
336+
# this in the near future.
334337
if hash yarnpkg 2>/dev/null
335338
then
336-
yarn install --check-files
339+
yarnpkg install --check-files
337340
fi
338341

339342
# ...but still link to the local packages

0 commit comments

Comments
 (0)