diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index db3739a..4b047fa 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false max-parallel: 2 matrix: - version: [19,18,17,16,15,14,13,12] + version: [20,19,18,17,16,15,14,13,12] uses: ./.github/workflows/regression.yml with: name: angular diff --git a/package-lock.json b/package-lock.json index 4343207..628a552 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,8 +25,11 @@ "globals": "^15.9.0", "nodemon": "^2.0.20", "rete-cli": "~2.0.1", - "rete-kit": "^1.12.0", + "rete-kit": "^1.14.0", "typescript": "^4.9.5" + }, + "peerDependencies": { + "rete-kit": "^1.12.0" } }, "node_modules/@ampproject/remapping": { @@ -7903,9 +7906,9 @@ } }, "node_modules/rete-kit": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/rete-kit/-/rete-kit-1.12.0.tgz", - "integrity": "sha512-d7rAMNuBqNwxRrEtNGDpeC8VC6hVVA91ZPyDVpEULZYNfNwnZp/l05W5VJYDZrM3RxwHKELAZ0TcKmBxEvPmFw==", + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/rete-kit/-/rete-kit-1.14.0.tgz", + "integrity": "sha512-G56bZifGXkLbRwqUGjeSatdba7dEWnPaFa5DA6Sm2bMEY687VPzM7JHx5jbx2Hmr50RyQf2dN9zY5TZtqyOUbQ==", "dev": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 72719b3..5889fab 100644 --- a/package.json +++ b/package.json @@ -32,11 +32,11 @@ "globals": "^15.9.0", "nodemon": "^2.0.20", "rete-cli": "~2.0.1", - "rete-kit": "^1.12.0", + "rete-kit": "^1.14.0", "typescript": "^4.9.5" }, "peerDependencies": { - "rete-kit": "^1.12.0" + "rete-kit": "^1.14.0" }, "dependencies": { "@playwright/test": "^1.37.1", diff --git a/src/commands/init/index.ts b/src/commands/init/index.ts index dfaef6a..5ce3b4e 100644 --- a/src/commands/init/index.ts +++ b/src/commands/init/index.ts @@ -4,7 +4,7 @@ export const targets: { stack: App.AppStack, versions: number[] }[] = [ { stack: 'react', versions: [16, 17, 18] }, { stack: 'react-vite', versions: [16, 17, 18] }, { stack: 'vue', versions: [2, 3] }, - { stack: 'angular', versions: [12, 13, 14, 15, 16, 17, 18, 19] }, + { stack: 'angular', versions: [12, 13, 14, 15, 16, 17, 18, 19, 20] }, { stack: 'svelte', versions: [3, 4, 5] }, { stack: 'lit-vite', versions: [3] } ] @@ -21,7 +21,7 @@ export const fixtures = targets export function getFeatures({ stack, version }: Pick<(typeof fixtures)[0], 'stack' | 'version'>, next: boolean) { return [ - stack === 'angular' && new App.Features.Angular(version as 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19, next), + stack === 'angular' && new App.Features.Angular(version as 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20, next), ['react', 'react-vite'].includes(stack) && new App.Features.React(version, stack, next), stack === 'vue' && new App.Features.Vue(version as 2 | 3, next), stack === 'svelte' && new App.Features.Svelte(version as 3 | 4 | 5, next),