Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af65d3a

Browse files
committed
build: update all non-major dependencies
See associated pull request for more information. Closes #31125 as a pr takeover
1 parent 1578402 commit af65d3a

File tree

8 files changed

+870
-546
lines changed

8 files changed

+870
-546
lines changed

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@bazel/buildifier": "8.2.1",
6565
"@eslint/compat": "1.3.2",
6666
"@eslint/eslintrc": "3.3.1",
67-
"@eslint/js": "9.34.0",
67+
"@eslint/js": "9.35.0",
6868
"@rollup/plugin-alias": "^5.1.1",
6969
"@rollup/plugin-commonjs": "^28.0.0",
7070
"@rollup/plugin-json": "^6.1.0",
@@ -94,14 +94,14 @@
9494
"@types/yargs": "^17.0.20",
9595
"@types/yargs-parser": "^21.0.0",
9696
"@types/yarnpkg__lockfile": "^1.1.5",
97-
"@typescript-eslint/eslint-plugin": "8.42.0",
98-
"@typescript-eslint/parser": "8.42.0",
97+
"@typescript-eslint/eslint-plugin": "8.43.0",
98+
"@typescript-eslint/parser": "8.43.0",
9999
"ajv": "8.17.1",
100100
"ansi-colors": "4.1.3",
101101
"buffer": "6.0.3",
102102
"esbuild": "0.25.9",
103103
"esbuild-wasm": "0.25.9",
104-
"eslint": "9.34.0",
104+
"eslint": "9.35.0",
105105
"eslint-config-prettier": "10.1.8",
106106
"eslint-plugin-header": "3.1.1",
107107
"eslint-plugin-import": "2.32.0",
@@ -123,16 +123,16 @@
123123
"karma-source-map-support": "1.4.0",
124124
"listr2": "9.0.3",
125125
"lodash": "^4.17.21",
126+
"magic-string": "0.30.19",
126127
"npm": "^11.0.0",
127-
"magic-string": "0.30.18",
128-
"rollup-plugin-dts": "6.2.3",
129-
"rollup-plugin-sourcemaps2": "0.5.4",
130128
"prettier": "^3.0.0",
131129
"protractor": "~7.0.0",
132130
"puppeteer": "18.2.1",
133131
"quicktype-core": "23.2.6",
134-
"rollup": "4.50.0",
132+
"rollup": "4.50.1",
135133
"rollup-license-plugin": "~3.0.1",
134+
"rollup-plugin-dts": "6.2.3",
135+
"rollup-plugin-sourcemaps2": "0.5.4",
136136
"semver": "7.7.2",
137137
"shelljs": "^0.10.0",
138138
"source-map-support": "0.5.21",

packages/angular/build/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"@ampproject/remapping": "2.3.0",
2222
"@angular-devkit/architect": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
23-
"@babel/core": "7.28.3",
23+
"@babel/core": "7.28.4",
2424
"@babel/helper-annotate-as-pure": "7.27.3",
2525
"@babel/helper-split-export-declaration": "7.24.7",
2626
"@inquirer/confirm": "5.1.16",
@@ -32,17 +32,17 @@
3232
"istanbul-lib-instrument": "6.0.3",
3333
"jsonc-parser": "3.3.1",
3434
"listr2": "9.0.3",
35-
"magic-string": "0.30.18",
35+
"magic-string": "0.30.19",
3636
"mrmime": "2.0.1",
3737
"parse5-html-rewriting-stream": "8.0.0",
3838
"picomatch": "4.0.3",
3939
"piscina": "5.1.3",
40-
"rolldown": "1.0.0-beta.35",
41-
"sass": "1.92.0",
40+
"rolldown": "1.0.0-beta.36",
41+
"sass": "1.92.1",
4242
"semver": "7.7.2",
4343
"source-map-support": "0.5.21",
44-
"tinyglobby": "0.2.14",
45-
"vite": "7.1.4",
44+
"tinyglobby": "0.2.15",
45+
"vite": "7.1.5",
4646
"watchpack": "2.4.4"
4747
},
4848
"optionalDependencies": {

packages/angular/build/src/builders/unit-test/runners/vitest/executor.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import type { BuilderOutput } from '@angular-devkit/architect';
1010
import assert from 'node:assert';
1111
import { readFile } from 'node:fs/promises';
1212
import path from 'node:path';
13-
import type { InlineConfig, Vitest } from 'vitest/node';
13+
import type { InlineConfig, Vitest, VitestPlugin } from 'vitest/node';
1414
import { assertIsError } from '../../../../utils/error';
1515
import { loadEsmModule } from '../../../../utils/load-esm';
1616
import { toPosixPath } from '../../../../utils/path';
@@ -26,6 +26,7 @@ import type { TestExecutor } from '../api';
2626
import { setupBrowserConfiguration } from './browser-provider';
2727

2828
type VitestCoverageOption = Exclude<InlineConfig['coverage'], undefined>;
29+
type VitestPlugins = Awaited<ReturnType<typeof VitestPlugin>>;
2930

3031
export class VitestExecutor implements TestExecutor {
3132
private vitest: Vitest | undefined;
@@ -137,8 +138,8 @@ export class VitestExecutor implements TestExecutor {
137138
private createVitestPlugins(
138139
testSetupFiles: string[],
139140
browserOptions: Awaited<ReturnType<typeof setupBrowserConfiguration>>,
140-
): NonNullable<import('vite').PluginOption>[] {
141-
const { workspaceRoot, codeCoverage } = this.options;
141+
): VitestPlugins {
142+
const { workspaceRoot } = this.options;
142143

143144
return [
144145
{
@@ -149,7 +150,7 @@ export class VitestExecutor implements TestExecutor {
149150
// Create a subproject that can be configured with plugins for browser mode.
150151
// Plugins defined directly in the vite overrides will not be present in the
151152
// browser specific Vite instance.
152-
const [project] = await context.injectTestProjects({
153+
await context.injectTestProjects({
153154
test: {
154155
name: this.projectName,
155156
root: workspaceRoot,

packages/angular/build/src/typings.d.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/angular_devkit/build_angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"@angular-devkit/build-webpack": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
1212
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
1313
"@angular/build": "workspace:0.0.0-PLACEHOLDER",
14-
"@babel/core": "7.28.3",
14+
"@babel/core": "7.28.4",
1515
"@babel/generator": "7.28.3",
1616
"@babel/helper-annotate-as-pure": "7.27.3",
1717
"@babel/helper-split-export-declaration": "7.24.7",
1818
"@babel/plugin-transform-async-generator-functions": "7.28.0",
1919
"@babel/plugin-transform-async-to-generator": "7.27.1",
2020
"@babel/plugin-transform-runtime": "7.28.3",
2121
"@babel/preset-env": "7.28.3",
22-
"@babel/runtime": "7.28.3",
22+
"@babel/runtime": "7.28.4",
2323
"@discoveryjs/json-ext": "0.6.3",
2424
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
2525
"ansi-colors": "4.1.3",
@@ -46,7 +46,7 @@
4646
"postcss-loader": "8.2.0",
4747
"resolve-url-loader": "5.0.0",
4848
"rxjs": "7.8.2",
49-
"sass": "1.92.0",
49+
"sass": "1.92.1",
5050
"sass-loader": "16.0.5",
5151
"semver": "7.7.2",
5252
"source-map-loader": "5.0.0",

packages/angular_devkit/schematics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
1717
"jsonc-parser": "3.3.1",
18-
"magic-string": "0.30.18",
18+
"magic-string": "0.30.19",
1919
"ora": "8.2.0",
2020
"rxjs": "7.8.2"
2121
}

0 commit comments

Comments
 (0)