-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): unbundle 3rd-party CLIs (#434)
* Working™ https://coveord.atlassian.net/browse/CDX-478 * fix existing tests https://coveord.atlassian.net/browse/CDX-478 * normalize git precon+UT https://coveord.atlassian.net/browse/CDX-478 * write unit tests https://coveord.atlassian.net/browse/CDX-478 * fix bad pkg https://coveord.atlassian.net/browse/CDX-478 * ut https://coveord.atlassian.net/browse/CDX-478 * rename interfaces https://coveord.atlassian.net/browse/CDX-478 * vue: add npx https://coveord.atlassian.net/browse/CDX-478 * e2e: confirm is on stderrr https://coveord.atlassian.net/browse/CDX-478 * use error.code, remove autofix https://coveord.atlassian.net/browse/CDX-478 * better check https://coveord.atlassian.net/browse/CDX-478 * add angular-cli to test env https://coveord.atlassian.net/browse/CDX-478
- Loading branch information
1 parent
3eb2d06
commit 377c6f5
Showing
28 changed files
with
2,511 additions
and
9,624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ Start-Process -FilePath $SetUserFTAPath -ArgumentList ' https ChromeHTML' -PassT | |
Start-Process -FilePath $SetUserFTAPath -ArgumentList '.htm ChromeHTML' -PassThru | Wait-Process | ||
Start-Process -FilePath $SetUserFTAPath -ArgumentList '.html ChromeHTML' -PassThru | Wait-Process | ||
|
||
|
||
do { | ||
$ChromeTest = Test-NetConnection -ComputerName localhost -Port 9222 -InformationLevel Quiet | ||
Write-Output "Chrome Test $ChromeTest" | ||
|
@@ -25,6 +26,8 @@ do { | |
git config --global user.name "notgroot" | ||
git config --global user.email "[email protected]" | ||
|
||
npm install -g @angular/cli | ||
|
||
npm set registry http://localhost:4873 | ||
yarn config set registry http://localhost:4873 | ||
Write-Output "--mutex network" | Out-File -FilePath ~/.yarnrc -Encoding utf8 -Append | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ git config --global user.email "[email protected]" | |
|
||
while ! timeout 1 bash -c "echo > /dev/tcp/localhost/4873"; do sleep 10; done | ||
|
||
npm install -g @angular/cli | ||
|
||
export UI_TEMPLATE_VERSION=0.0.0 | ||
npm set registry http://localhost:4873 | ||
yarn config set registry http://localhost:4873 | ||
|
@@ -31,7 +33,6 @@ yarn config set -- --silent true | |
npm run npm:bump:template -- -- $UI_TEMPLATE_VERSION | ||
npm run npm:publish:template | ||
cd packages/cli-e2e | ||
|
||
node entrypoints/utils/wait-for-published-packages.js | ||
|
||
while ! timeout 1 bash -c "echo > /dev/tcp/localhost/9222"; do sleep 10; done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.