Skip to content

Commit

Permalink
v7.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Mar 31, 2023
1 parent 81a8b69 commit 202e4fa
Show file tree
Hide file tree
Showing 23 changed files with 31 additions and 39 deletions.
17 changes: 9 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,15 @@ test-test262-update-allowlist:


new-version-checklist:
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@echo "!!!!!! !!!!!!"
@echo "!!!!!! Update the semver.lte check in module-types.ts !!!!!!"
@echo "!!!!!! !!!!!!"
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@exit 1
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
# @echo "!!!!!! !!!!!!"
# @echo "!!!!!! Write any release-blocking message here, and !!!!!!"
# @echo "!!!!!! UNCOMMENT THESE LINES !!!!!!"
# @echo "!!!!!! !!!!!!"
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
# @exit 1

new-version:
$(MAKE) new-version-checklist
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel",
"version": "7.21.3",
"version": "7.21.4",
"private": true,
"type": "commonjs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-code-frame/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/code-frame",
"version": "7.18.6",
"version": "7.21.4",
"description": "Generate errors that contain a code frame that point to source locations.",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-code-frame",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-compat-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/compat-data",
"version": "7.21.0",
"version": "7.21.4",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"description": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.21.3",
"version": "7.21.4",
"description": "Babel compiler core.",
"main": "./lib/index.js",
"author": "The Babel Team (https://babel.dev/team)",
Expand Down
11 changes: 1 addition & 10 deletions packages/babel-core/src/config/files/module-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,7 @@ function loadCtsDefault(filepath: string) {
} catch (error) {
if (!hasTsSupport) {
const packageJson = require("@babel/preset-typescript/package.json");

if (
semver.lte(
// eslint-disable-next-line import/no-extraneous-dependencies
packageJson.version,
"7.21.0",
) &&
// ignore the version check if not published
!packageJson.conditions
) {
if (semver.lte(packageJson.version, "7.21.4")) {
console.error(
"`.cts` configuration file failed to load, please try to update `@babel/preset-typescript`.",
);
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.21.3",
"version": "7.21.4",
"description": "Turns an AST into code.",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-compilation-targets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-compilation-targets",
"version": "7.20.7",
"version": "7.21.4",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"description": "Helper functions on Babel compilation targets",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-class-features-plugin",
"version": "7.21.0",
"version": "7.21.4",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"description": "Compile class public and private fields, private methods and decorators to ES6",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-regexp-features-plugin",
"version": "7.21.0",
"version": "7.21.4",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"description": "Compile ESNext Regular Expressions to ES5",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-module-imports/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-module-imports",
"version": "7.18.6",
"version": "7.21.4",
"description": "Babel helper functions for inserting module loads",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/parser",
"version": "7.21.3",
"version": "7.21.4",
"description": "A JavaScript parser",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-parser",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-syntax-flow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-flow",
"version": "7.18.6",
"version": "7.21.4",
"description": "Allow parsing of the flow syntax",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-syntax-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-jsx",
"version": "7.18.6",
"version": "7.21.4",
"description": "Allow parsing of jsx",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-pipeline-operator",
"version": "7.18.6",
"version": "7.21.4",
"description": "Allow parsing of the pipeline operator",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-syntax-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-typescript",
"version": "7.20.0",
"version": "7.21.4",
"description": "Allow parsing of TypeScript syntax",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-transform-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-runtime",
"version": "7.21.0",
"version": "7.21.4",
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-env/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/preset-env",
"version": "7.20.2",
"version": "7.21.4",
"description": "A Babel preset for each environment.",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-preset-env",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-flow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/preset-flow",
"version": "7.18.6",
"version": "7.21.4",
"description": "Babel preset for all Flow plugins.",
"author": "The Babel Team (https://babel.dev/team)",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/preset-typescript",
"version": "7.21.0",
"version": "7.21.4",
"description": "Babel preset for TypeScript.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-standalone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/standalone",
"version": "7.21.3",
"version": "7.21.4",
"description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "./babel.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-traverse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/traverse",
"version": "7.21.3",
"version": "7.21.4",
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-traverse",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/types",
"version": "7.21.3",
"version": "7.21.4",
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-types",
Expand Down

0 comments on commit 202e4fa

Please sign in to comment.