Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@babel/parser

Package Overview
Dependencies
Maintainers
4
Versions
248
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.4
to
8.0.0-rc.5
+3
-1
lib/index.d.ts

@@ -75,3 +75,2 @@ import * as _babel_types from '@babel/types';

}) => string;
DecoratorAbstractMethod: string;
DecoratorArgumentsOutsideParentheses: string;

@@ -660,2 +659,5 @@ DecoratorsBeforeAfterExport: string;

DeclareFunctionHasImplementation: string;
DecoratorAbstractMethod: ({ kind, }: {
kind: "abstract method" | "abstract field" | "declare field";
}) => string;
DuplicateAccessibilityModifier: ({ modifier, }: {

@@ -662,0 +664,0 @@ modifier: Accessibility;

{
"name": "@babel/parser",
"version": "8.0.0-rc.4",
"version": "8.0.0-rc.5",
"description": "A JavaScript parser",

@@ -33,15 +33,16 @@ "author": "The Babel Team (https://babel.dev/team)",

"engines": {
"node": "^20.19.0 || >=22.12.0"
"node": "^22.18.0 || >=24.11.0"
},
"# dependencies": "This package doesn't actually have runtime dependencies. @babel/types is only needed for type definitions.",
"dependencies": {
"@babel/types": "^8.0.0-rc.4"
"@babel/types": "^8.0.0-rc.5"
},
"devDependencies": {
"@babel/code-frame": "^8.0.0-rc.4",
"@babel/helper-check-duplicate-nodes": "^8.0.0-rc.4",
"@babel/helper-fixtures": "^8.0.0-rc.4",
"@babel/helper-string-parser": "^8.0.0-rc.4",
"@babel/helper-validator-identifier": "^8.0.0-rc.4",
"charcodes": "^0.2.0"
"@babel/code-frame": "^8.0.0-rc.5",
"@babel/helper-check-duplicate-nodes": "^8.0.0-rc.5",
"@babel/helper-fixtures": "^8.0.0-rc.5",
"@babel/helper-string-parser": "^8.0.0-rc.5",
"@babel/helper-validator-identifier": "^8.0.0-rc.5",
"charcodes": "^0.2.0",
"typescript": "6.0.2"
},

@@ -48,0 +49,0 @@ "bin": "./bin/babel-parser.js",

@@ -133,3 +133,2 @@ import { File, Expression } from "@babel/types";

];
DecoratorAbstractMethod: [];
DecoratorArgumentsOutsideParentheses: [];

@@ -293,2 +292,5 @@ DecoratorsBeforeAfterExport: [];

DeclareFunctionHasImplementation: [];
DecoratorAbstractMethod: [
{ kind: "abstract method" | "abstract field" | "declare field" },
];
DuplicateAccessibilityModifier: [{ modifier: Accessibility }];

@@ -295,0 +297,0 @@ DuplicateModifier: [{ modifier: TsModifier }];

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

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