Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lerna link convert #1730

Merged
merged 25 commits into from
Jul 19, 2019
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5356574
lerna link convert
goto-bus-stop Jun 8, 2019
826f630
ci: use npm ci
goto-bus-stop Jun 17, 2019
9a6c053
update lockfile
goto-bus-stop Jun 17, 2019
07a9a97
companion: set `bin` to source file
goto-bus-stop Jun 19, 2019
61b5abd
companion: do chmod +x on start-server.js
goto-bus-stop Jun 19, 2019
9e47303
build: remove obsolete lerna config
goto-bus-stop Jun 19, 2019
28a6394
build: explicitly install latest versions when building e2e tests for ci
goto-bus-stop Jun 19, 2019
373c02c
Remove versions from private packages
goto-bus-stop Jun 19, 2019
e2f7270
fix regex
goto-bus-stop Jun 19, 2019
b9793e8
try fix
goto-bus-stop Jun 19, 2019
68edfe0
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jun 19, 2019
58a647e
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 5, 2019
f8a801a
ci: force npm to install to endtoend folder
goto-bus-stop Jul 5, 2019
fb636f6
ci: fold up e2e build output
goto-bus-stop Jul 5, 2019
7429d25
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 7, 2019
efbe0d2
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 15, 2019
eaa94f0
Update netlify deploy preview command
goto-bus-stop Jul 15, 2019
1b0f648
Remove mentions of npm run bootstrap
goto-bus-stop Jul 17, 2019
a4d178c
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 17, 2019
5a9721d
Edit .github/CONTRIBUTING.md instead
goto-bus-stop Jul 18, 2019
deb1db3
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 18, 2019
a6786f0
Merge branch 'master' into lerna-link-convert
goto-bus-stop Jul 19, 2019
551b62d
companion: add proxy executable
goto-bus-stop Jul 19, 2019
ff90b3c
companion: fix publish
goto-bus-stop Jul 19, 2019
a43b1af
Downgrade jest to appease create-react-app
goto-bus-stop Jul 19, 2019
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
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ matrix:
before_install:
- nvm install-latest-npm
install:
- npm install
- npm run bootstrap -- --no-ci
- npm ci
script:
- 'if [ -n "${LINT-}" ]; then npm run lint; fi'
- 'if [ -n "${LINT-}" ]; then npm run test:type; fi'
Expand Down
11 changes: 10 additions & 1 deletion bin/endtoend-build-ci
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ if [ -z "${CI:-}" ]; then
echo ""
echo "Hit Ctrl+C to stop or Enter if you REALLY DO want to run the full thing."
read
else
echo travis_fold:start:endtoend_build_ci
fi

set -o xtrace
Expand All @@ -30,6 +32,10 @@ cleanup() {
rm -rf "${__root}/test/endtoend/tmp"
git reset
git checkout $CURRENT_COMMIT

if [ -n "${CI:-}" ]; then
echo travis_fold:end:endtoend_build_ci
fi
}
function on_exit() {
# revert to public registry
Expand Down Expand Up @@ -73,12 +79,15 @@ ENDTOEND=1 lerna publish from-git --yes \
# install all packages to the endtoend folder
# (Don't use the npm cache, don't generate a package-lock, don't save dependencies to any package.json)
pushd "${__root}/test/endtoend"
PKG_VERSIONS="$(echo uppy $PACKAGES | sed -e 's/\S\+\b/&@latest/g')"
echo '{}' > package.json # temp pkg.json to make sure npm installs deps in this folder
npm install \
--prefer-online \
--registry "$VERDACCIO_REGISTRY" \
--no-package-lock \
--no-save \
uppy $PACKAGES
$PKG_VERSIONS
rm package.json
popd

bash "${__dir}/endtoend-build-tests"
Expand Down
Loading