Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: build lib
run: pnpm lib
Expand All @@ -32,17 +32,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: lint
run: pnpm lint
Expand All @@ -51,17 +51,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: test
run: pnpm test --watch=false --browsers=ChromeHeadless
Expand All @@ -70,17 +70,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: test
run: pnpm test --watch=false --browsers=FirefoxHeadless
Expand All @@ -89,17 +89,17 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: test
run: pnpm test --watch=false --browsers=SafariNative
Expand All @@ -108,17 +108,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
run_install: false

- name: install
run: pnpm install --frozen-lockfile
run: pnpm ci

- name: prettier
run: pnpm prettier-check
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";
import angularEslint from "angular-eslint";

export default tseslint.config(
export default defineConfig(
{
files: ["**/*.ts"],
extends: [
Expand Down
53 changes: 27 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,50 +32,51 @@
"prettier-fix": "prettier . --write"
},
"dependencies": {
"@angular/cdk": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/material": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@angular/cdk": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/material": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/platform-browser-dynamic": "^22.0.0",
"@angular/router": "^22.0.0",
"@ctrl/tinycolor": "^4.2.0",
"@types/node": "^24.10.1",
"@types/node": "^24.12.4",
"ngx-color-picker": "^20.1.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@angular/language-service": "^21.0.0",
"@types/jasmine": "^5.1.13",
"angular-eslint": "^20.6.0",
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/language-service": "^22.0.0",
"@types/jasmine": "^6.0.0",
"angular-eslint": "^21.4.0",
"copyfiles": "^2.4.1",
"eslint": "^9.39.1",
"eslint": "^10.4.1",
"gh-pages": "^6.3.0",
"jasmine-core": "^5.12.1",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "^6.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"karma-safarinative-launcher": "^1.1.0",
"ng-packagr": "^21.0.0",
"ng-packagr": "^22.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0"
"prettier": "^3.8.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.0"
},
"engines": {
"npm": "Please use pnpm instead of npm to install dependencies",
"yarn": "Please use pnpm instead of yarn to install dependencies",
"pnpm": "^10.7.0"
"pnpm": "^11.5.0"
},
"packageManager": "pnpm@10.22.0"
"packageManager": "pnpm@11.5.0"
}
Loading
Loading