Skip to content

Commit 6d43c2f

Browse files
authored
Merge branch 'main' into copilot/fix-db-switch-enter-functionality
2 parents d3307d9 + 8f53cb0 commit 6d43c2f

File tree

7 files changed

+160
-149
lines changed

7 files changed

+160
-149
lines changed

package-lock.json

Lines changed: 138 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -82,20 +82,20 @@
8282
"fast-glob": "3.3.3"
8383
},
8484
"devDependencies": {
85-
"@angular-devkit/build-angular": "20.3.9",
86-
"@angular/animations": "20.3.10",
87-
"@angular/build": "20.3.9",
88-
"@angular/cli": "20.3.9",
89-
"@angular/common": "20.3.10",
90-
"@angular/compiler": "20.3.10",
91-
"@angular/compiler-cli": "20.3.10",
92-
"@angular/core": "20.3.10",
93-
"@angular/forms": "20.3.10",
94-
"@angular/platform-browser": "20.3.10",
95-
"@angular/platform-browser-dynamic": "20.3.10",
96-
"@angular/platform-server": "20.3.10",
97-
"@angular/router": "20.3.10",
98-
"@angular/ssr": "20.3.9",
85+
"@angular-devkit/build-angular": "20.3.10",
86+
"@angular/animations": "20.3.11",
87+
"@angular/build": "20.3.10",
88+
"@angular/cli": "20.3.10",
89+
"@angular/common": "20.3.11",
90+
"@angular/compiler": "20.3.11",
91+
"@angular/compiler-cli": "20.3.11",
92+
"@angular/core": "20.3.11",
93+
"@angular/forms": "20.3.11",
94+
"@angular/platform-browser": "20.3.11",
95+
"@angular/platform-browser-dynamic": "20.3.11",
96+
"@angular/platform-server": "20.3.11",
97+
"@angular/router": "20.3.11",
98+
"@angular/ssr": "20.3.10",
9999
"@axe-core/playwright": "4.11.0",
100100
"@babel/eslint-parser": "7.28.5",
101101
"@changesets/cli": "2.29.7",
@@ -121,7 +121,7 @@
121121
"eslint": "9.39.1",
122122
"eslint-config-prettier": "10.1.8",
123123
"eslint-config-xo": "0.49.0",
124-
"eslint-plugin-package-json": "0.65.1",
124+
"eslint-plugin-package-json": "0.74.0",
125125
"eslint-plugin-prettier": "5.5.4",
126126
"find-versions": "6.0.0",
127127
"glob": "11.0.3",
@@ -130,7 +130,7 @@
130130
"jscpd": "4.0.5",
131131
"lint-staged": "16.2.6",
132132
"markdownlint-cli": "0.45.0",
133-
"ng-packagr": "20.3.0",
133+
"ng-packagr": "20.3.2",
134134
"npm-package-json-lint": "9.0.0",
135135
"npm-run-all2": "8.0.4",
136136
"playwright": "1.56.1",

packages/foundations/assets/fonts/generate-eu-fonts.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { glob } from 'glob';
22
import { execFile } from 'node:child_process';
33
import { promisify } from 'node:util';
44

5-
import { dirname } from 'path';
6-
import { fileURLToPath } from 'url';
5+
import { dirname } from 'node:path';
6+
import { fileURLToPath } from 'node:url';
77

88
const __filename = fileURLToPath(import.meta.url);
99
const __dirname = dirname(__filename).replaceAll('\\', '/');

storybooks/_storybook/.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { StorybookConfig } from '@storybook/react-vite';
22

3-
import { dirname, join } from 'path';
3+
import { dirname, join } from 'node:path';
44

55
/**
66
* This function is used to resolve the absolute path of a package.

storybooks/angular-storybook/.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StorybookConfig } from '@storybook/angular';
22

3-
import { dirname, join } from 'path';
3+
import { dirname, join } from 'node:path';
44

55
/**
66
* This function is used to resolve the absolute path of a package.

storybooks/react-storybook/.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { StorybookConfig } from '@storybook/react-vite';
22

3-
import { dirname, join } from 'path';
3+
import { dirname, join } from 'node:path';
44

55
/**
66
* This function is used to resolve the absolute path of a package.

storybooks/vue-storybook/.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { StorybookConfig } from '@storybook/vue3-vite';
2-
import { dirname, join } from 'path';
2+
import { dirname, join } from 'node:path';
33

44
/**
55
* This function is used to resolve the absolute path of a package.

0 commit comments

Comments
 (0)