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
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bazel_dep(name = "aspect_rules_jasmine", version = "2.0.4")
bazel_dep(name = "rules_angular")
git_override(
module_name = "rules_angular",
commit = "50b8a6daa50cfbbab422d5f29f85c40128e10fd1",
commit = "70642f87e50b3b2068314dc9c359687fb0b9744b",
remote = "https://github.com/angular/rules_angular.git",
)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"karma-jasmine-html-reporter": "~2.2.0",
"karma-source-map-support": "1.4.0",
"lodash": "^4.17.21",
"magic-string": "0.30.21",
"magic-string": "1.0.0",
"prettier": "^3.0.0",
"puppeteer": "25.3.0",
"quicktype-core": "25.0.0",
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 @@ -31,7 +31,7 @@
"https-proxy-agent": "9.1.0",
"jsonc-parser": "3.3.1",
"listr2": "10.2.2",
"magic-string": "0.30.21",
"magic-string": "1.0.0",
"mrmime": "2.0.1",
"oxc-parser": "0.140.0",
"parse5-html-rewriting-stream": "8.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/build/src/tools/esbuild/global-scripts.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 MagicString, { Bundle } from 'magic-string';
import { Bundle, MagicString } from 'magic-string';
import assert from 'node:assert';
import { readFile } from 'node:fs/promises';
import path from 'node:path';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import remapping, { type EncodedSourceMap, type SourceMapInput } from '@ampproject/remapping';
import MagicString from 'magic-string';
import { MagicString } from 'magic-string';
import assert from 'node:assert';
import { workerData } from 'node:worker_threads';
import { Visitor, parseSync } from 'oxc-parser';
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 @@ -7,7 +7,7 @@
*/

import { RawSourceMap } from '@ampproject/remapping';
import MagicString from 'magic-string';
import { MagicString } from 'magic-string';
import { readFileSync, readdirSync, statSync } from 'node:fs';
import { basename, dirname, extname, join, relative } from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
"jsonc-parser": "3.3.1",
"magic-string": "0.30.21",
"magic-string": "1.0.0",
"ora": "9.4.1",
"rxjs": "7.8.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/schematics/src/tree/recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import { BaseException } from '@angular-devkit/core';
import MagicString from 'magic-string';
import { MagicString } from 'magic-string';
import { ContentHasMutatedException } from '../exception/exception';
import { FileEntry, UpdateRecorder } from './interface';

Expand Down
Loading
Loading