Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Run yarn after eject
  • Loading branch information
Timer committed Oct 29, 2017
commit dea7cd77e12335525ba8df692724292d248388ad
5 changes: 5 additions & 0 deletions tasks/e2e-kitchensink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ E2E_FILE=./build/index.html \
# Eject...
echo yes | npm run eject

if hash yarnpkg 2>/dev/null
then
yarn install --check-files
fi

# ...but still link to the local packages
install_package "$root_path"/packages/babel-preset-react-app
install_package "$root_path"/packages/eslint-config-react-app
Expand Down
5 changes: 5 additions & 0 deletions tasks/e2e-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,11 @@ verify_module_scope
# Eject...
echo yes | npm run eject

if hash yarnpkg 2>/dev/null
then
yarn install --check-files
fi

# ...but still link to the local packages
install_package "$root_path"/packages/babel-preset-react-app
install_package "$root_path"/packages/eslint-config-react-app
Expand Down