Socket
Socket
Sign inDemoInstall

@angular/compiler-cli

Package Overview
Dependencies
Maintainers
2
Versions
828
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/compiler-cli - npm Package Compare versions

Comparing version 18.2.0-rc.0 to 18.2.0

bundles/chunk-2SSA4Y5F.js

2

bundles/chunk-KCKRBU6N.js

@@ -302,3 +302,3 @@

import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
var PLACEHOLDER_VERSION = "18.2.0-rc.0";
var PLACEHOLDER_VERSION = "18.2.0";
function wrapReference(wrapped) {

@@ -305,0 +305,0 @@ return { value: wrapped, type: wrapped };

@@ -9,3 +9,3 @@

constructorParametersDownlevelTransform
} from "./chunk-OPQN45UO.js";
} from "./chunk-JA5OGHV4.js";
import {

@@ -37,3 +37,3 @@ DEFAULT_ERROR_CODE,

readConfiguration
} from "./chunk-BQJWNGMG.js";
} from "./chunk-K32LEXRQ.js";
import {

@@ -43,7 +43,7 @@ angularJitApplicationTransform,

getInitializerApiJitTransform
} from "./chunk-A35M6UXY.js";
} from "./chunk-ZHNORXPH.js";
import {
OptimizeFor,
TsCreateProgramDriver
} from "./chunk-JN25LQVK.js";
} from "./chunk-2SSA4Y5F.js";
import {

@@ -85,3 +85,3 @@ isLocalCompilationDiagnostics

import { Version } from "@angular/compiler";
var VERSION = new Version("18.2.0-rc.0");
var VERSION = new Version("18.2.0");

@@ -88,0 +88,0 @@ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs

@@ -12,3 +12,3 @@

forwardRefResolver
} from "../chunk-JN25LQVK.js";
} from "../chunk-2SSA4Y5F.js";
import {

@@ -15,0 +15,0 @@ ImportManager,

@@ -9,5 +9,5 @@

constructorParametersDownlevelTransform
} from "../chunk-OPQN45UO.js";
import "../chunk-A35M6UXY.js";
import "../chunk-JN25LQVK.js";
} from "../chunk-JA5OGHV4.js";
import "../chunk-ZHNORXPH.js";
import "../chunk-2SSA4Y5F.js";
import "../chunk-WYWH4ABE.js";

@@ -14,0 +14,0 @@ import "../chunk-ERN7RQQ7.js";

@@ -9,8 +9,8 @@ #!/usr/bin/env node

readCommandLineAndConfiguration
} from "../../chunk-E3LRITIP.js";
} from "../../chunk-ZLQQWV6U.js";
import {
EmitFlags
} from "../../chunk-BQJWNGMG.js";
import "../../chunk-A35M6UXY.js";
import "../../chunk-JN25LQVK.js";
} from "../../chunk-K32LEXRQ.js";
import "../../chunk-ZHNORXPH.js";
import "../../chunk-2SSA4Y5F.js";
import "../../chunk-WYWH4ABE.js";

@@ -17,0 +17,0 @@ import "../../chunk-ERN7RQQ7.js";

@@ -8,6 +8,6 @@ #!/usr/bin/env node

main
} from "../../chunk-E3LRITIP.js";
import "../../chunk-BQJWNGMG.js";
import "../../chunk-A35M6UXY.js";
import "../../chunk-JN25LQVK.js";
} from "../../chunk-ZLQQWV6U.js";
import "../../chunk-K32LEXRQ.js";
import "../../chunk-ZHNORXPH.js";
import "../../chunk-2SSA4Y5F.js";
import "../../chunk-WYWH4ABE.js";

@@ -14,0 +14,0 @@ import "../../chunk-ERN7RQQ7.js";

@@ -10,3 +10,3 @@ /**

import { AstObject, AstValue } from '../../ast/ast_value';
export declare const PLACEHOLDER_VERSION = "18.2.0-rc.0";
export declare const PLACEHOLDER_VERSION = "18.2.0";
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;

@@ -13,0 +13,0 @@ /**

{
"name": "@angular/compiler-cli",
"version": "18.2.0-rc.0",
"version": "18.2.0",
"description": "Angular - the compiler CLI for Node.js",

@@ -46,3 +46,3 @@ "typings": "index.d.ts",

"dependencies": {
"@babel/core": "7.24.9",
"@babel/core": "7.25.2",
"@jridgewell/sourcemap-codec": "^1.4.14",

@@ -57,3 +57,3 @@ "reflect-metadata": "^0.2.0",

"peerDependencies": {
"@angular/compiler": "18.2.0-rc.0",
"@angular/compiler": "18.2.0",
"typescript": ">=5.4 <5.6"

@@ -60,0 +60,0 @@ },

@@ -11,4 +11,15 @@ /**

import { TypeCheckingConfig } from '../api';
export declare const NULL_AS_ANY: ts.AsExpression;
/**
* Expression that is cast to any. Currently represented as `0 as any`.
*
* Historically this expression was using `null as any`, but a newly-added check in TypeScript 5.6
* (https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-beta/#disallowed-nullish-and-truthy-checks)
* started flagging it as always being nullish. Other options that were considered:
* - `NaN as any` or `Infinity as any` - not used, because they don't work if the `noLib` compiler
* option is enabled. Also they require more characters.
* - Some flavor of function call, like `isNan(0) as any` - requires even more characters than the
* NaN option and has the same issue with `noLib`.
*/
export declare const ANY_EXPRESSION: ts.AsExpression;
/**
* Convert an `AST` to TypeScript code directly, without going through an intermediate `Expression`

@@ -15,0 +26,0 @@ * AST.

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc