Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/angular/build/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ ts_project(
],
data = RUNTIME_ASSETS,
deps = [
":node_modules/@ampproject/remapping",
":node_modules/@angular-devkit/architect",
":node_modules/@angular-devkit/core",
":node_modules/@angular/ssr",
":node_modules/@babel/core",
":node_modules/@babel/helper-annotate-as-pure",
":node_modules/@babel/helper-split-export-declaration",
":node_modules/@inquirer/confirm",
":node_modules/@jridgewell/remapping",
":node_modules/@vitejs/plugin-basic-ssl",
":node_modules/browserslist",
":node_modules/https-proxy-agent",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
},
"builders": "builders.json",
"dependencies": {
"@ampproject/remapping": "2.3.0",
"@angular-devkit/architect": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
"@babel/core": "7.28.0",
"@babel/helper-annotate-as-pure": "7.27.3",
"@babel/helper-split-export-declaration": "7.24.7",
"@inquirer/confirm": "5.1.14",
"@jridgewell/remapping": "2.3.5",
"@vitejs/plugin-basic-ssl": "2.1.0",
"beasties": "0.3.5",
"browserslist": "^4.23.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* found in the LICENSE file at https://angular.dev/license
*/

import remapping, { SourceMapInput } from '@ampproject/remapping';
import { PluginObj, parseSync, transformFromAstAsync, types } from '@babel/core';
import remapping, { SourceMapInput } from '@jridgewell/remapping';
import assert from 'node:assert';
import { workerData } from 'node:worker_threads';
import { assertIsError } from '../../utils/error';
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/build/src/tools/sass/rebasing-importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.dev/license
*/

import { RawSourceMap } from '@ampproject/remapping';
import { RawSourceMap } from '@jridgewell/remapping';
import MagicString from 'magic-string';
import { readFileSync, readdirSync, statSync } from 'node:fs';
import { basename, dirname, extname, join, relative } from 'node:path';
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/build/src/tools/sass/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.dev/license
*/

import mergeSourceMaps, { RawSourceMap } from '@ampproject/remapping';
import mergeSourceMaps, { RawSourceMap } from '@jridgewell/remapping';
import { dirname } from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';
import { MessagePort, receiveMessageOnPort } from 'node:worker_threads';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.dev/license
*/

import remapping, { SourceMapInput } from '@ampproject/remapping';
import remapping, { SourceMapInput } from '@jridgewell/remapping';
import type { Plugin } from 'vite';
import { loadEsmModule } from '../../../utils/load-esm';

Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ ts_project(
],
data = RUNTIME_ASSETS,
deps = [
":node_modules/@ampproject/remapping",
":node_modules/@angular-devkit/architect",
":node_modules/@angular-devkit/build-webpack",
":node_modules/@angular-devkit/core",
Expand All @@ -144,6 +143,7 @@ ts_project(
":node_modules/@babel/preset-env",
":node_modules/@babel/runtime",
":node_modules/@discoveryjs/json-ext",
":node_modules/@jridgewell/remapping",
":node_modules/@ngtools/webpack",
":node_modules/@web/test-runner",
":node_modules/ansi-colors",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"typings": "src/index.d.ts",
"builders": "builders.json",
"dependencies": {
"@ampproject/remapping": "2.3.0",
"@angular-devkit/architect": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
"@angular-devkit/build-webpack": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
Expand All @@ -21,6 +20,7 @@
"@babel/preset-env": "7.28.0",
"@babel/runtime": "7.28.2",
"@discoveryjs/json-ext": "0.6.3",
"@jridgewell/remapping": "2.3.5",
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
"ansi-colors": "4.1.3",
"autoprefixer": "10.4.21",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.dev/license
*/

import remapping, { SourceMapInput } from '@ampproject/remapping';
import remapping, { SourceMapInput } from '@jridgewell/remapping';
import type { BuildFailure, TransformResult } from 'esbuild';
import { minify } from 'terser';
import { EsbuildExecutor } from './esbuild-executor';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* found in the LICENSE file at https://angular.dev/license
*/

import remapping from '@ampproject/remapping';
import {
NodePath,
ParseResult,
Expand All @@ -17,6 +16,7 @@ import {
traverse,
types,
} from '@babel/core';
import remapping from '@jridgewell/remapping';
import * as fs from 'node:fs/promises';
import * as path from 'node:path';
import { workerData } from 'node:worker_threads';
Expand Down
20 changes: 14 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading