Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Bump @babel/cli from 7.7.0 to 7.8.0 and remove --configFile option #2904

Closed

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jan 12, 2020

Bumps @babel/cli from 7.7.0 to 7.8.0 and removes the --configFile option from the package build scripts.

Babel suggests the use of kebabcase in its command line options, and version 7.7.4 of the cli fixes an issue where unknown options would silently fail (babel/babel#10698). I think this means that our use of --configFile babel.config.js has actually been ignored for a while now and it has just been defaulting to our config file in the root anyway. Removing this option, the packages still seem to build as they used to and components look ok in storybook.

Release notes

Sourced from @babel/cli's releases.

v7.8.0 (2020-01-12)

Blog post on the website

👓 Spec Compliance

  • babel-parser
    • #10980 Disallow private name in object elements and TS type elements (@JLHwung)
    • #10955 LiteralPropertyName should allow BigIntLiteral (@JLHwung)
    • #10953 fix: check await when parsing AsyncArrowBindingIdentifier (@JLHwung)
    • #10947 Fix: TopLevelAwait should respect await identifiers defined in sub scope. (@JLHwung)
    • #10946 fix: Class Field Initializer should not allow await expression as immediate child (@JLHwung)
  • babel-plugin-proposal-numeric-separator
    • #10938 StringNumericLiteral does not include NumericLiteralSeparator (@JLHwung)
  • babel-generator, babel-parser, babel-plugin-proposal-private-methods

💥 Breaking Change

🚀 New Feature

  • babel-standalone
  • babel-core
  • babel-compat-data, babel-preset-env-standalone, babel-preset-env
    • #10811 Add optional-chaining and nullish-coalescing to preset-env (@Druotic)
  • babel-helper-module-transforms, babel-plugin-transform-modules-systemjs
    • #10780 add allowTopLevelThis option to transform-modules-systemjs (@JLHwung)
  • babel-parser
  • babel-cli
  • babel-core, babel-generator, babel-parser
  • babel-core, babel-parser

🐛 Bug Fix

  • babel-node
  • babel-plugin-proposal-numeric-separator
    • #10938 StringNumericLiteral does not include NumericLiteralSeparator (@JLHwung)
  • babel-preset-env
  • babel-parser
    • #10944 When reading a new string, U+2028/2029 should correctly set the new column (@JLHwung)
... (truncated)
Changelog

Sourced from @babel/cli's changelog.

v7.8.0 (2020-01-12)

👓 Spec Compliance

  • babel-parser
    • #10980 Disallow private name in object elements and TS type elements (@JLHwung)
    • #10955 LiteralPropertyName should allow BigIntLiteral (@JLHwung)
    • #10953 fix: check await when parsing AsyncArrowBindingIdentifier (@JLHwung)
    • #10947 Fix: TopLevelAwait should respect await identifiers defined in sub scope. (@JLHwung)
    • #10946 fix: Class Field Initializer should not allow await expression as immediate child (@JLHwung)
  • babel-plugin-proposal-numeric-separator
    • #10938 StringNumericLiteral does not include NumericLiteralSeparator (@JLHwung)
  • babel-generator, babel-parser, babel-plugin-proposal-private-methods

💥 Breaking Change

🚀 New Feature

  • babel-standalone
  • babel-core
  • babel-compat-data, babel-preset-env-standalone, babel-preset-env
    • #10811 Add optional-chaining and nullish-coalescing to preset-env (@Druotic)
  • babel-helper-module-transforms, babel-plugin-transform-modules-systemjs
    • #10780 add allowTopLevelThis option to transform-modules-systemjs (@JLHwung)
  • babel-parser
  • babel-cli
  • babel-core, babel-generator, babel-parser
  • babel-core, babel-parser

🐛 Bug Fix

  • babel-node
  • babel-plugin-proposal-numeric-separator
    • #10938 StringNumericLiteral does not include NumericLiteralSeparator (@JLHwung)
  • babel-preset-env
  • babel-parser
... (truncated)
Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yml file in this repo:

  • Update frequency
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [@babel/cli](https://github.com/babel/babel) from 7.7.0 to 7.8.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md)
- [Commits](babel/babel@v7.7.0...v7.8.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jan 12, 2020
@amywalkerdev amywalkerdev changed the title Bump @babel/cli from 7.7.0 to 7.8.0 Bump @babel/cli from 7.7.0 to 7.8.0 and remove --configFile option Jan 14, 2020
@amywalkerdev
Copy link
Contributor

amywalkerdev commented Jan 14, 2020

This works fine locally 😢

FAIL .yeoman/src/get-package-types/index.test.js

● getPackageTypes › should return a list of package types

expect(received).toEqual(expected) // deep equality


- Expected

+ Received


- Array [

-   "components",

-   "containers",

-   "utilities",

- ]

+ Array []

@dependabot-preview
Copy link
Contributor Author

A newer version of @babel/cli exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@dependabot-preview
Copy link
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@amywalkerdev amywalkerdev deleted the dependabot/npm_and_yarn/babel/cli-7.8.0 branch January 21, 2020 18:56
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants