-
Notifications
You must be signed in to change notification settings - Fork 8
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
Builder is broken when using angular-cli ^8.0.0 #10
Comments
I recommend using nrwl's cypress builder. The most recent version should work with angular 8. And is being actively maintained.
And use the builder: Docs for builder options are here: https://nx.dev/api/cypress/builders/cypress |
Cool, though out of interest, will you be updating this to support Angular 8 at anytime? |
No. The Nrwl builder does everything I tried to do with this builder and is
better maintained.
…On Wed, Jun 5, 2019, 7:00 AM Niall ***@***.***> wrote:
I recommend using nrwl's cypress builder. The most recent version should
work with angular 8. And is being actively maintained.
npm i @nrwl/builders
And use the builder: @nrwl/cypress:cypress in your angular.json.
Docs for builder options are here:
https://nx.dev/api/cypress/builders/cypress
Cool, though out of interest, will you be updating this to support Angular
8 at anytime?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#10?email_source=notifications&email_token=AAGSKQBCXRDYHNRKGGWQ6ETPY6MDTA5CNFSM4HREEQTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODW7LMVA#issuecomment-499037780>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAGSKQE5OQW2QBR2CNYYXRLPY6MDTANCNFSM4HREEQTA>
.
|
Please could you update the readme too? |
Step to reproduce:
README.md
.ng e2e
.Expected behaviour:
Actual behaviour:
After a little hacking around (to determine if this would be a quick fix or something bigger), I found that Angular CLI is now looking for an
implementation
field rather than aclass
field for the command defined inbuilders.json
; after hacking my localnpx-cypress-builder
package to switch this, I was then seeing this error:...which led me to conclude this is likely to require a non-trivial fix. I couldn't quickly find any documentation on the Angular site about what the new expected interface contracts are.
Workaround:
package.json
scripts to mimic the behaviour of this package, usingwait-on
andnpm-run-all
dev dependencies in the interim until a fix can be made:The text was updated successfully, but these errors were encountered: