-
Notifications
You must be signed in to change notification settings - Fork 64
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
chore: update angular-standalone to v19 (need prebuilt binary to work) #38
chore: update angular-standalone to v19 (need prebuilt binary to work) #38
Conversation
57a30cb
to
d7fe7ea
Compare
"@types/jasmine": "~5.1.0", | ||
"autoprefixer": "^10.4.20", | ||
"cypress": "^13.15.1", | ||
"jasmine-core": "~5.2.0", | ||
"cypress": "https://cdn.cypress.io/beta/npm/13.15.2/darwin-arm64/feat/support_angular_19-438f97845003bb30d5d10cadffe0b52570b634b8/cypress.tgz", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we will need to update these after we publish cypress 14 as the dev tag (See release checklist cypress-io/cypress#30305)
@@ -3,6 +3,7 @@ import { ButtonComponent } from './button.component'; | |||
|
|||
@Component({ | |||
template: ` <app-button> Click Me </app-button> `, | |||
standalone: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we able to just convert this to a standalone
component?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can't because we are using template syntax, which means the testing module needs access to the component. Otherwise, it would be fine
* delete vue2 and nuxt2 projects (#27) * remove nextjs 12 and 13 projects. add nextjs 14 project (#25) * chore: update svelte-vite-ts to svelte 4 and vite 5 (#28) * update angular regular (modules/ not standalone) with generated ng new angular --no-standalone and updated standalone (#31) * chore: remove cra examples with cypress 14 (#32) * chore: remove vuecli apps (#33) * chore: remove vuecli apps * make sure webpack app is working (now running as expected) * update svelte-webpack-ts to Svelte 4 (#34) * chore: add next 15 example (#37) * chore: update angular-standalone to v19 (need prebuilt binary to work) (#38) * chore: update vite to vite 6. svelte-vite project needs to wait until we support svelte 5 (#39) * chore: update svelte projects (vite and webpack) to svelte 5 (#40) * update svelte-webpack to support svelte 5 * update tests and components to be svelte 5 compliant * update svelte vite project to svelte 5 and update tests/components to comply with svelte 5 * chore: update to react 19 and update react 19 webpack project (#41) * update to react 19. Additionally, update react webpack project to use latest dependencies * Update react-webpack5-js/package.json Co-authored-by: Ryan Manuel <ryanm@cypress.io> --------- Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com> Co-authored-by: Ryan Manuel <ryanm@cypress.io> * chore: merge main into release 14 (#42) * chore: update react-webpack5-js app (#36) * update cypress to use 14 prerelease * chore: update react-webpack5-js app (#36) (#43) * chore: update binaries to use published Cypress 14 binary (#45) --------- Co-authored-by: Matt Schile <mschile@gmail.com> Co-authored-by: Ryan Manuel <ryanm@cypress.io> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
Updates the angular standalone example to
v19