Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@babel/parser

Package Overview
Dependencies
Maintainers
4
Versions
241
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/parser - npm Package Compare versions

Comparing version
8.0.0-rc.1
to
8.0.0-rc.2
+7
-7
package.json
{
"name": "@babel/parser",
"version": "8.0.0-rc.1",
"version": "8.0.0-rc.2",
"description": "A JavaScript parser",

@@ -37,10 +37,10 @@ "author": "The Babel Team (https://babel.dev/team)",

"dependencies": {
"@babel/types": "^8.0.0-rc.1"
"@babel/types": "^8.0.0-rc.2"
},
"devDependencies": {
"@babel/code-frame": "^8.0.0-rc.1",
"@babel/helper-check-duplicate-nodes": "^8.0.0-rc.1",
"@babel/helper-fixtures": "^8.0.0-rc.1",
"@babel/helper-string-parser": "^8.0.0-rc.1",
"@babel/helper-validator-identifier": "^8.0.0-rc.1",
"@babel/code-frame": "^8.0.0-rc.2",
"@babel/helper-check-duplicate-nodes": "^8.0.0-rc.2",
"@babel/helper-fixtures": "^8.0.0-rc.2",
"@babel/helper-string-parser": "^8.0.0-rc.2",
"@babel/helper-validator-identifier": "^8.0.0-rc.2",
"charcodes": "^0.2.0"

@@ -47,0 +47,0 @@ },

@@ -42,14 +42,4 @@ import { File, Expression } from "@babel/types";

type BABEL_8_BREAKING = true;
type IF_BABEL_7<V> = false extends BABEL_8_BREAKING ? V : never;
type Plugin$1 =
| "asyncDoExpressions"
| IF_BABEL_7<"asyncGenerators">
| IF_BABEL_7<"bigInt">
| IF_BABEL_7<"classPrivateMethods">
| IF_BABEL_7<"classPrivateProperties">
| IF_BABEL_7<"classProperties">
| IF_BABEL_7<"classStaticBlock">
| IF_BABEL_7<"decimal">
| "decorators"

@@ -60,8 +50,4 @@ | "decorators-legacy"

| "destructuringPrivate"
| IF_BABEL_7<"deprecatedImportAssert">
| "doExpressions"
| IF_BABEL_7<"dynamicImport">
| IF_BABEL_7<"explicitResourceManagement">
| "exportDefaultFrom"
| IF_BABEL_7<"exportNamespaceFrom">
| "flow"

@@ -73,19 +59,6 @@ | "flowComments"

| "jsx"
| IF_BABEL_7<"jsonStrings">
| IF_BABEL_7<"logicalAssignment">
| IF_BABEL_7<"importAssertions">
| IF_BABEL_7<"importReflection">
| "moduleBlocks"
| IF_BABEL_7<"moduleStringNames">
| IF_BABEL_7<"nullishCoalescingOperator">
| IF_BABEL_7<"numericSeparator">
| IF_BABEL_7<"objectRestSpread">
| IF_BABEL_7<"optionalCatchBinding">
| IF_BABEL_7<"optionalChaining">
| "placeholders"
| IF_BABEL_7<"privateIn">
| IF_BABEL_7<"regexpUnicodeSets">
| "sourcePhaseImports"
| "throwExpressions"
| IF_BABEL_7<"topLevelAwait">
| "v8intrinsic"

@@ -97,4 +70,2 @@ | ParserPluginWithOptions[0];

| ["estree", { classFeatures?: boolean }]
| IF_BABEL_7<["importAttributes", { deprecatedAssertSyntax: boolean }]>
| IF_BABEL_7<["moduleAttributes", { version: "may-2020" }]>
| ["optionalChainingAssign", { version: "2023-07" }]

@@ -113,16 +84,9 @@ | ["partialApplication", PartialApplicationPluginOptions]

interface PipelineOperatorPluginOptions {
proposal: BABEL_8_BREAKING extends false
? "minimal" | "fsharp" | "hack" | "smart"
: "fsharp" | "hack";
proposal: "fsharp" | "hack";
topicToken?: "%" | "#" | "@@" | "^^" | "^";
}
type FlowPluginOptions = BABEL_8_BREAKING extends true
? {
all?: boolean;
enums?: boolean;
}
: {
all?: boolean;
};
interface FlowPluginOptions {
all?: boolean;
}

@@ -304,3 +268,2 @@ interface TypeScriptPluginOptions {

ParseExpressionExpectsEOF: [{ unexpected: number }];
PipeBodyIsTighter: [];
PipeTopicRequiresHackPipes: [];

@@ -307,0 +270,0 @@ PipeTopicUnbound: [];

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

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

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