Skip to content

Commit 222ebcf

Browse files
authored
feat: update to angular 19
* feat: update to angular 19 * feat: update package file to support 19 * fix: npm ci should be using legacy peer deps * ci: run workdlows on 22 node * refactor: update to latest 19 * refactor: remove all modules * ci: test fixing * refactor: move more to signals * release: pre-release 19.0.0.beta.0 * feat: re-add the module as this is easier for consumsers * release: pre-release beta
1 parent f2219e8 commit 222ebcf

File tree

55 files changed

+7420
-8643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+7420
-8643
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [20.x]
11+
node-version: [20.x, 22.x]
1212
steps:
1313
- name: Checkout Repo
1414
uses: actions/checkout@v4
@@ -28,6 +28,6 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- name: Install dependencies
31-
run: npm ci
31+
run: npm ci --legacy-peer
3232
- name: Run build
3333
run: npm run build

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [20.x]
11+
node-version: [20.x, 22.x]
1212
steps:
1313
- name: Checkout Repo
1414
uses: actions/checkout@v4
@@ -28,6 +28,6 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- name: Install dependencies
31-
run: npm ci
31+
run: npm ci --legacy-peer
3232
- name: Run lint
3333
run: npm run lint

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- name: Install dependencies
31-
run: npm ci
31+
run: npm ci --legacy-peer
3232
- name: Run tests
3333
run: npm run test_ci

CHANGELOG.md

+2,529-5
Large diffs are not rendered by default.

cypress.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import { defineConfig } from 'cypress'
2+
import { trimEnd } from 'cypress/types/lodash'
23

34
export default defineConfig({
45
viewportWidth: 1200,
56
viewportHeight: 800,
67
blockHosts: ['camo.githubusercontent.com'],
78
e2e: {
9+
experimentalRunAllSpecs: true,
810
// We've imported your old cypress plugins here.
911
// You may want to clean this up later by importing these.
1012
setupNodeEvents(on, config) {

0 commit comments

Comments
 (0)