chore(deps): update babel monorepo #2

Open
renovate-bot wants to merge 1 commit from renovate/babel-monorepo into master
Collaborator

This PR contains the following updates:

Package Type Update Change
babel-plugin-transform-object-rest-spread (source) devDependencies minor 6.20.2 -> 6.26.0
babel-preset-es2015 (source) devDependencies minor 6.18.0 -> 6.24.1
babel-preset-stage-0 (source) devDependencies minor 6.16.0 -> 6.24.1

Release Notes

babel/babel (babel-plugin-transform-object-rest-spread)

v6.26.0

Compare Source

6.26.0 (2017-08-16)

Backports for some folks (also others when we accidentally merged PRs from both 6.x/master)
Lesson learned: just use master and backport on another branch.
7.x beta is next: https://github.com/babel/babel/milestone/9, not planning on further 6.x releases (we say this every time)

👓 Spec Compliancy
  • babel-core, babel-generator, babel-plugin-transform-flow-comments, babel-plugin-transform-flow-strip-types, babel-traverse, babel-types
🚀 New Feature
  • babel-cli
🐛 Bug Fix
📝 Documentation
  • babel-plugin-transform-class-properties
  • babel-plugin-transform-runtime
  • babel-plugin-transform-regenerator
  • Other
  • babel-generator, babel-plugin-transform-es2015-arrow-functions, babel-plugin-transform-es2015-modules-commonjs, babel-plugin-transform-es2015-spread, babel-plugin-transform-runtime, babel-register
🏠 Internal
Committers: 19

v6.23.0

Compare Source

6.23.0 (2017-02-13)

🚀 New Feature
  • babel-plugin-transform-react-constant-elements
    • #​4812 feature: Support pure expressions in transform-react-constant-elements. (@​STRML)
  • babel-preset-flow, babel-preset-react
  • babel-traverse
  • babel-plugin-transform-es2015-block-scoping
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 20

v6.22.0

Compare Source

6.22.0 (2017-01-19)

Thanks to 10 new contributors! (23 total)

A quick update since it's been over a month already: adds support for shorthand import syntax in Flow + some fixes!

We'll be merging in our current 7.0 PRs on a 7.0 branch soon and I'l be making some more issues (most should be beginner-friendly).

To follow our progress check out our 7.0 milestone, the wiki and upcoming announcements on twitter!

We support stripping out and generating the new shorthand import syntax in Flow (parser support was added in babylon@6.15.0.

import {
  someValue,
  type someType,
  typeof someOtherValue,
} from "blah";
🚀 New Feature
  • babel-generator, babel-types
  • babel-plugin-transform-flow-strip-types, babel-traverse
  • babel-core
🐛 Bug Fix
  • babel-plugin-transform-object-rest-spread
const { x, ...y } = foo();

Old Behavior

const { x } = foo();
const y = _objectWithoutProperties(foo(), ["x"]);

New/Expected Behavior

const _ref = foo(); // should only be called once
const { x } = _ref; 
const y = _objectWithoutProperties(_ref, ["x"]);

Accounts for default values in object rest params

function fn({a = 1, ...b} = {}) {
  return {a, b};
}
const assign = ([...arr], index, value) => {
  arr[index] = value
  return arr
}

const arr = [1, 2, 3]
assign(arr, 1, 42)
console.log(arr) // [1, 2, 3]
  • babel-plugin-transform-es2015-function-name

Input

export const x = ({ x }) => x;
export const y = function () {};

Output

export const x = ({ x }) => x;
export const y = function y() {}; 
💅 Polish
  • babel-traverse
  • babel-generator, babel-plugin-transform-exponentiation-operator
📝 Documentation
🏠 Internal
  • babel-*
  • babel-helper-transform-fixture-test-runner
  • babel-cli, babel-core, babel-generator, babel-helper-define-map, babel-register, babel-runtime, babel-types
  • babel-cli, babel-generator, babel-helper-fixtures, babel-helper-transform-fixture-test-runner, babel-preset-es2015, babel-runtime, babel-traverse
  • babel-code-frame
  • babel-plugin-transform-react-jsx
  • babel-plugin-transform-decorators
  • babel-plugin-transform-es2015-computed-properties
  • babel-cli
Committers: 23, First PRs: 10

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [babel-plugin-transform-object-rest-spread](https://github.com/babel/babel) ([source](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-object-rest-spread)) | devDependencies | minor | [`6.20.2` -> `6.26.0`](https://renovatebot.com/diffs/npm/babel-plugin-transform-object-rest-spread/6.20.2/6.26.0) | | [babel-preset-es2015](https://babeljs.io/) ([source](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-es2015)) | devDependencies | minor | [`6.18.0` -> `6.24.1`](https://renovatebot.com/diffs/npm/babel-preset-es2015/6.18.0/6.24.1) | | [babel-preset-stage-0](https://babeljs.io/) ([source](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-stage-0)) | devDependencies | minor | [`6.16.0` -> `6.24.1`](https://renovatebot.com/diffs/npm/babel-preset-stage-0/6.16.0/6.24.1) | --- ### Release Notes <details> <summary>babel/babel (babel-plugin-transform-object-rest-spread)</summary> ### [`v6.26.0`](https://github.com/babel/babel/releases/tag/v6.26.0) [Compare Source](https://github.com/babel/babel/compare/v6.23.0...v6.26.0) #### 6.26.0 (2017-08-16) > Backports for some folks (also others when we accidentally merged PRs from both 6.x/master) > Lesson learned: just use `master` and backport on another branch. > 7.x beta is next: https://github.com/babel/babel/milestone/9, not planning on further 6.x releases (we say this every time) ##### :eyeglasses: Spec Compliancy - `babel-core`, `babel-generator`, `babel-plugin-transform-flow-comments`, `babel-plugin-transform-flow-strip-types`, `babel-traverse`, `babel-types` - [#&#8203;6081](https://github.com/babel/babel/pull/6081) Flow opaque type 6.x backport. ([@&#8203;jbrown215](https://github.com/jbrown215)) ##### :rocket: New Feature - `babel-cli` - [#&#8203;5796](https://github.com/babel/babel/pull/5796) Allow --inspect-brk option to be used with babel-node \[6.x backport]. ([@&#8203;noinkling](https://github.com/noinkling)) ##### :bug: Bug Fix - `babel-plugin-transform-es2015-modules-commonjs` - [#&#8203;5811](https://github.com/babel/babel/pull/5811) Fix 5768. ([@&#8203;joshwnj](https://github.com/joshwnj)) - [#&#8203;5469](https://github.com/babel/babel/pull/5469) Fix commonjs exports with destructuring.. ([@&#8203;yavorsky](https://github.com/yavorsky)) - `babel-types` - [#&#8203;5693](https://github.com/babel/babel/pull/5693) Hoist toSequenceExpression's convert helper. ([@&#8203;jridgewell](https://github.com/jridgewell)) ##### :memo: Documentation - `babel-plugin-transform-class-properties` - [#&#8203;6005](https://github.com/babel/babel/pull/6005) FIX access to the prototype of an instance. ([@&#8203;shuaibird](https://github.com/shuaibird)) - `babel-plugin-transform-runtime` - [#&#8203;5857](https://github.com/babel/babel/pull/5857) Fix typos in README.md. ([@&#8203;danny-andrews](https://github.com/danny-andrews)) - `babel-plugin-transform-regenerator` - [#&#8203;5852](https://github.com/babel/babel/pull/5852) Fix babel-plugin-transform-regenerator README. ([@&#8203;k15a](https://github.com/k15a)) - Other - [#&#8203;5788](https://github.com/babel/babel/pull/5788) Add a section on troubleshooting \[skip ci]. ([@&#8203;peey](https://github.com/peey)) - [#&#8203;5755](https://github.com/babel/babel/pull/5755) Fix broken tables in README.md. ([@&#8203;u9lyfish](https://github.com/u9lyfish)) - `babel-generator`, `babel-plugin-transform-es2015-arrow-functions`, `babel-plugin-transform-es2015-modules-commonjs`, `babel-plugin-transform-es2015-spread`, `babel-plugin-transform-runtime`, `babel-register` - [#&#8203;5613](https://github.com/babel/babel/pull/5613) Backport doc changes. ([@&#8203;xtuc](https://github.com/xtuc)) ##### :house: Internal - `babel-traverse` - [#&#8203;5965](https://github.com/babel/babel/pull/5965) Remove unused functions from renamer.js.. ([@&#8203;mcav](https://github.com/mcav)) - [#&#8203;5363](https://github.com/babel/babel/pull/5363) Increase the code coverage for traverse evaluation. ([@&#8203;ssuman](https://github.com/ssuman)) - Other - [#&#8203;5938](https://github.com/babel/babel/pull/5938) Remove codecov node package and use bash uploader. ([@&#8203;existentialism](https://github.com/existentialism)) ##### Committers: 19 - Artem Yavorsky ([yavorsky](https://github.com/yavorsky)) - Brian Ng ([existentialism](https://github.com/existentialism)) - Danny Andrews ([danny-andrews](https://github.com/danny-andrews)) - Henry Zhu ([hzoo](https://github.com/hzoo)) - Jeffrey Wear ([wearhere](https://github.com/wearhere)) - Jordan Brown ([jbrown215](https://github.com/jbrown215)) - Josh Johnston ([joshwnj](https://github.com/joshwnj)) - Justin Ridgewell ([jridgewell](https://github.com/jridgewell)) - Konstantin Pschera ([k15a](https://github.com/k15a)) - Malcolm ([noinkling](https://github.com/noinkling)) - Marcus Cavanaugh ([mcav](https://github.com/mcav)) - Peeyush Kushwaha ([peey](https://github.com/peey)) - Philipp Friedenberger ([MrSpider](https://github.com/MrSpider)) - Samuel Reed ([STRML](https://github.com/STRML)) - Shuaibird Hwang ([shuaibird](https://github.com/shuaibird)) - Suman ([ssuman](https://github.com/ssuman)) - Sven SAULEAU ([xtuc](https://github.com/xtuc)) - jonathan schatz ([modosc](https://github.com/modosc)) - u9lyfish@gmail.com ([u9lyfish](https://github.com/u9lyfish)) ### [`v6.23.0`](https://github.com/babel/babel/releases/tag/v6.23.0) [Compare Source](https://github.com/babel/babel/compare/v6.22.0...v6.23.0) #### 6.23.0 (2017-02-13) ##### :rocket: New Feature - `babel-plugin-transform-react-constant-elements` - [#&#8203;4812](https://github.com/babel/babel/pull/4812) feature: Support pure expressions in transform-react-constant-elements. ([@&#8203;STRML](https://github.com/STRML)) - `babel-preset-flow`, `babel-preset-react` - [#&#8203;5288](https://github.com/babel/babel/pull/5288) Add new flow preset. ([@&#8203;thejameskyle](https://github.com/thejameskyle)) - `babel-traverse` - [#&#8203;5230](https://github.com/babel/babel/pull/5230) Add path/family sibling traversal methods. ([@&#8203;chitchu](https://github.com/chitchu)) - `babel-plugin-transform-es2015-block-scoping` - [#&#8203;5236](https://github.com/babel/babel/pull/5236) Add option to block-scoping to throw on slow code. ([@&#8203;spicyj](https://github.com/spicyj)) ##### :bug: Bug Fix - `babel-core`, `babel-traverse` - [#&#8203;5050](https://github.com/babel/babel/pull/5050) Rewrite Hub as interface [#&#8203;5047](https://github.com/babel/babel/issues/5047). ([@&#8203;yongxu](https://github.com/yongxu)) - `babel-plugin-transform-es2015-for-of` - [#&#8203;5298](https://github.com/babel/babel/pull/5298) Fix loose for-of with label. ([@&#8203;jridgewell](https://github.com/jridgewell)) - `babel-plugin-transform-react-constant-elements`, `babel-traverse` - [#&#8203;5153](https://github.com/babel/babel/pull/5153) Fix react constant elements bindings. ([@&#8203;STRML](https://github.com/STRML)) - [#&#8203;5143](https://github.com/babel/babel/pull/5143) Fix PathHoister hoisting JSX member expressions on "this".. ([@&#8203;STRML](https://github.com/STRML)) - `babel-plugin-transform-do-expressions`, `babel-traverse` - [#&#8203;5030](https://github.com/babel/babel/pull/5030) Prevent multiple return statements in a loop when replacing expressions. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-register` - [#&#8203;5260](https://github.com/babel/babel/pull/5260) Fix TypeError with babel-register's cache. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-traverse` - [#&#8203;5206](https://github.com/babel/babel/pull/5206) Deopt evaluation of undefined with a local binding. Closes [#&#8203;5204](https://github.com/babel/babel/issues/5204). ([@&#8203;boopathi](https://github.com/boopathi)) - `babel-plugin-transform-runtime` - [#&#8203;5195](https://github.com/babel/babel/pull/5195) Don't transpile ES7 symbol properties. ([@&#8203;taion](https://github.com/taion)) - `babel` - [#&#8203;5258](https://github.com/babel/babel/pull/5258) checks if babel is installed globally and displays correct cli message. ([@&#8203;xtina-starr](https://github.com/xtina-starr)) - `babel-generator` - [#&#8203;5270](https://github.com/babel/babel/pull/5270) Emit parens for await of ternary expressions. ([@&#8203;erikdesjardins](https://github.com/erikdesjardins)) - [#&#8203;5193](https://github.com/babel/babel/pull/5193) Fix missing parens when function expressions is tag. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-plugin-transform-es2015-modules-commonjs` - [#&#8203;5235](https://github.com/babel/babel/pull/5235) Limit export node default assignment stack size [#&#8203;4323](https://github.com/babel/babel/issues/4323). ([@&#8203;mattste](https://github.com/mattste)) ##### :memo: Documentation - `babel-*` - [#&#8203;5244](https://github.com/babel/babel/pull/5244) Normalize options sections in docs \[skip ci]. ([@&#8203;existentialism](https://github.com/existentialism)) - [#&#8203;5216](https://github.com/babel/babel/pull/5216) Remove link to REPL. ([@&#8203;xtuc](https://github.com/xtuc)) - Other - [#&#8203;5242](https://github.com/babel/babel/pull/5242) Add our business model \[skip ci]. ([@&#8203;hzoo](https://github.com/hzoo)) - `babel-plugin-transform-es2015-spread` - [#&#8203;5227](https://github.com/babel/babel/pull/5227) Add example to spread README \[skip ci]. ([@&#8203;finkef](https://github.com/finkef)) - `babel-plugin-transform-flow-strip-types` - [#&#8203;5212](https://github.com/babel/babel/pull/5212) Remove REPL link transform-flow-strip-types doc. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-plugin-transform-regenerator` - [#&#8203;5202](https://github.com/babel/babel/pull/5202) Fix transform-regenerator README. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-plugin-transform-es2015-arrow-functions` - [#&#8203;5200](https://github.com/babel/babel/pull/5200) Fix transform-es2015-arrow-functions code blocks on the website. ([@&#8203;xtuc](https://github.com/xtuc)) - [#&#8203;5194](https://github.com/babel/babel/pull/5194) Fix transform-es2015-arrow-functions README. ([@&#8203;xtuc](https://github.com/xtuc)) ##### :house: Internal - `babel-core` - [#&#8203;5302](https://github.com/babel/babel/pull/5302) Add charset so tests work with convert-source-map@>1.4. ([@&#8203;loganfsmyth](https://github.com/loganfsmyth)) - `babel-core`, `babel-traverse` - [#&#8203;5050](https://github.com/babel/babel/pull/5050) Rewrite Hub as interface [#&#8203;5047](https://github.com/babel/babel/issues/5047). ([@&#8203;yongxu](https://github.com/yongxu)) - `babel-generator` - [#&#8203;5255](https://github.com/babel/babel/pull/5255) codegen performance: use trim instead of lodash/trimEnd. ([@&#8203;jwbay](https://github.com/jwbay)) - `babel-types` - [#&#8203;5181](https://github.com/babel/babel/pull/5181) Remove uses of lodash/compact. ([@&#8203;zertosh](https://github.com/zertosh)) - `babel-*` - [#&#8203;5265](https://github.com/babel/babel/pull/5265) Re-enable the max-len ESLint rule.. ([@&#8203;loganfsmyth](https://github.com/loganfsmyth)) - Other - [#&#8203;5264](https://github.com/babel/babel/pull/5264) Add a sublime project file. ([@&#8203;loganfsmyth](https://github.com/loganfsmyth)) - [#&#8203;5182](https://github.com/babel/babel/pull/5182) Run coverage only once. ([@&#8203;existentialism](https://github.com/existentialism)) - [#&#8203;5165](https://github.com/babel/babel/pull/5165) Add Node 7 to CI. ([@&#8203;chicoxyzzy](https://github.com/chicoxyzzy)) ##### Committers: 20 - Andres Suarez ([zertosh](https://github.com/zertosh)) - Ben Alpert ([spicyj](https://github.com/spicyj)) - Boopathi Rajaa ([boopathi](https://github.com/boopathi)) - Brian Ng ([existentialism](https://github.com/existentialism)) - Christina ([xtina-starr](https://github.com/xtina-starr)) - Erik Desjardins ([erikdesjardins](https://github.com/erikdesjardins)) - Fabian Finke ([finkef](https://github.com/finkef)) - Henry Zhu ([hzoo](https://github.com/hzoo)) - Jimmy Jia ([taion](https://github.com/taion)) - Justin Ridgewell ([jridgewell](https://github.com/jridgewell)) - Logan Smyth ([loganfsmyth](https://github.com/loganfsmyth)) - Matt Stewart ([mattste](https://github.com/mattste)) - Samuel Reed ([STRML](https://github.com/STRML)) - Sergey Rubanov ([chicoxyzzy](https://github.com/chicoxyzzy)) - Sven SAULEAU ([xtuc](https://github.com/xtuc)) - Vicente Jr Yuchitcho ([chitchu](https://github.com/chitchu)) - Yongxu Ren ([yongxu](https://github.com/yongxu)) - [jwbay](https://github.com/jwbay) - james kyle ([thejameskyle](https://github.com/thejameskyle)) - Łukasz Lityński ([hex13](https://github.com/hex13)) ### [`v6.22.0`](https://github.com/babel/babel/releases/tag/v6.22.0) [Compare Source](https://github.com/babel/babel/compare/v6.20.2...v6.22.0) ##### 6.22.0 (2017-01-19) > Thanks to 10 new contributors! (23 total) A quick update since it's been over a month already: adds support for shorthand import syntax in Flow + some fixes! We'll be merging in our current 7.0 PRs on a 7.0 branch soon and I'l be making some more issues (most should be beginner-friendly). To follow our progress check out our [7.0 milestone](https://github.com/babel/babel/milestone/9), the [wiki](https://github.com/babel/babel/wiki/Babel-7) and upcoming announcements on [twitter](https://twitter.com/babeljs)! We support stripping out and generating the new shorthand import syntax in Flow (parser support was added in [babylon@6.15.0](https://github.com/babel/babylon/releases/tag/v6.15.0). ```js import { someValue, type someType, typeof someOtherValue, } from "blah"; ``` ##### :rocket: New Feature - `babel-generator`, `babel-types` - [#&#8203;5110](https://github.com/babel/babel/pull/5110) Validate importKind and ensure code generation exists.. ([@&#8203;loganfsmyth](https://github.com/loganfsmyth)) - `babel-plugin-transform-flow-strip-types`, `babel-traverse` - [#&#8203;5035](https://github.com/babel/babel/pull/5035) Strip Flow's new shorthand import-type specifiers. ([@&#8203;jeffmo](https://github.com/jeffmo)) - `babel-core` - [#&#8203;4729](https://github.com/babel/babel/pull/4729) Add resolvePlugin and resolvePreset methods to babel-core API. ([@&#8203;rmacklin](https://github.com/rmacklin)) ##### :bug: Bug Fix - `babel-plugin-transform-object-rest-spread` - [#&#8203;5151](https://github.com/babel/babel/pull/5151) Avoid duplicating impure expressions in object rest destructuring. ([@&#8203;erikdesjardins](https://github.com/erikdesjardins)) ```js const { x, ...y } = foo(); ``` Old Behavior ```js const { x } = foo(); const y = _objectWithoutProperties(foo(), ["x"]); ``` New/Expected Behavior ```js const _ref = foo(); // should only be called once const { x } = _ref; const y = _objectWithoutProperties(_ref, ["x"]); ``` - `babel-cli` - [#&#8203;4790](https://github.com/babel/babel/pull/4790) fixes invalid line offsets in merged sourcemaps. ([@&#8203;peterm0x](https://github.com/peterm0x)) - `babel-plugin-transform-object-rest-spread` - [#&#8203;5088](https://github.com/babel/babel/pull/5088) fix: plugin-transform-object-rest-spread param with default value. ([@&#8203;christophehurpeau](https://github.com/christophehurpeau)) Accounts for default values in object rest params ```js function fn({a = 1, ...b} = {}) { return {a, b}; } ``` - `babel-plugin-transform-es2015-destructuring` - [#&#8203;5093](https://github.com/babel/babel/pull/5093) Ensure array is always copied during destructure. ([@&#8203;existentialism](https://github.com/existentialism)) ```js const assign = ([...arr], index, value) => { arr[index] = value return arr } const arr = [1, 2, 3] assign(arr, 1, 42) console.log(arr) // [1, 2, 3] ``` - `babel-plugin-transform-es2015-function-name` - [#&#8203;5008](https://github.com/babel/babel/pull/5008) Don't try to visit ArrowFunctionExpression, they cannot be named. ([@&#8203;Kovensky](https://github.com/Kovensky)) Input ```js export const x = ({ x }) => x; export const y = function () {}; ``` Output ```js export const x = ({ x }) => x; export const y = function y() {}; ``` - `babel-types` - [#&#8203;5068](https://github.com/babel/babel/pull/5068) Fix getBindingIdentifiers in babel-types. ([@&#8203;rtsao](https://github.com/rtsao)) - `babel-cli` - [#&#8203;3698](https://github.com/babel/babel/pull/3698) Watch mode should wait for file write. (T7411) ([@&#8203;hayeah](https://github.com/hayeah)) ##### :nail_care: Polish - `babel-traverse` - [#&#8203;5076](https://github.com/babel/babel/pull/5076) Optimize removal-hooks for ArrowFunctions. ([@&#8203;danez](https://github.com/danez)) - `babel-generator`, `babel-plugin-transform-exponentiation-operator` - [#&#8203;5026](https://github.com/babel/babel/pull/5026) Remove unnecessary spaces around template element. ([@&#8203;chicoxyzzy](https://github.com/chicoxyzzy)) ##### :memo: Documentation - Other - [#&#8203;5144](https://github.com/babel/babel/pull/5144) Fix dependency status extension.. ([@&#8203;yavorsky](https://github.com/yavorsky)) - [#&#8203;5136](https://github.com/babel/babel/pull/5136) Add babel-preset-env to maintained list.. ([@&#8203;yavorsky](https://github.com/yavorsky)) - `babel-core` - [#&#8203;5101](https://github.com/babel/babel/pull/5101) Document babelrc option. ([@&#8203;novemberborn](https://github.com/novemberborn)) - [#&#8203;5114](https://github.com/babel/babel/pull/5114) Update babel-core options in README. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-plugin-syntax-class-constructor-call` - [#&#8203;5130](https://github.com/babel/babel/pull/5130) update syntax-class-constructor-call documentation. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-plugin-transform-es2015-duplicate-keys`, `babel-plugin-transform-es2015-parameters` - [#&#8203;5111](https://github.com/babel/babel/pull/5111) Fixes some inconsistent documentation. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-plugin-transform-es2015-computed-properties`, `babel-plugin-transform-es2015-for-of` - [#&#8203;5096](https://github.com/babel/babel/pull/5096) Add examples to computed-props and for-of READMEs \[skip ci]. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-plugin-transform-class-properties` - [#&#8203;5077](https://github.com/babel/babel/pull/5077) Static function call result comment does not match variable content \[skip ci]. ([@&#8203;kasn](https://github.com/kasn)) - Other - [#&#8203;5070](https://github.com/babel/babel/pull/5070) Fix typo in README.md. ([@&#8203;nomicos](https://github.com/nomicos)) - [#&#8203;5031](https://github.com/babel/babel/pull/5031) remove plugin links, just use the website \[skip ci]. ([@&#8203;hzoo](https://github.com/hzoo)) - [#&#8203;5011](https://github.com/babel/babel/pull/5011) Add Team section \[skip ci]. ([@&#8203;hzoo](https://github.com/hzoo)) - `babel-plugin-transform-es2015-classes`, `babel-plugin-transform-function-bind` - [#&#8203;5061](https://github.com/babel/babel/pull/5061) Fix some doc lint issues. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-helpers` - [#&#8203;5059](https://github.com/babel/babel/pull/5059) Fix incorrect snippet language in babel-helpers. ([@&#8203;xtuc](https://github.com/xtuc)) - `babel-preset-react` - [#&#8203;5051](https://github.com/babel/babel/pull/5051) Adding more info to the Install section. ([@&#8203;gitanupam](https://github.com/gitanupam)) - `babel-plugin-check-es2015-constants`, `babel-plugin-transform-es2015-modules-umd`, `babel-plugin-transform-es2015-typeof-symbol`, `babel-register` - [#&#8203;5045](https://github.com/babel/babel/pull/5045) Fix some README links. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-core` - [#&#8203;5014](https://github.com/babel/babel/pull/5014) Update babel-core's README. ([@&#8203;xtuc](https://github.com/xtuc)) ##### :house: Internal - `babel-*` - [#&#8203;5129](https://github.com/babel/babel/pull/5129) Bump eslint-config-babel and fix lint. ([@&#8203;existentialism](https://github.com/existentialism)) - [#&#8203;5138](https://github.com/babel/babel/pull/5138) Refactor packages to use ES modules instead of CJS. ([@&#8203;chicoxyzzy](https://github.com/chicoxyzzy)) - [#&#8203;5113](https://github.com/babel/babel/pull/5113) Kaicataldo enable prefer const. ([@&#8203;hzoo](https://github.com/hzoo)) - `babel-helper-transform-fixture-test-runner` - [#&#8203;5135](https://github.com/babel/babel/pull/5135) Run Babel's unittests in a custom sandbox.. ([@&#8203;loganfsmyth](https://github.com/loganfsmyth)) - `babel-cli`, `babel-core`, `babel-generator`, `babel-helper-define-map`, `babel-register`, `babel-runtime`, `babel-types` - [#&#8203;5043](https://github.com/babel/babel/pull/5043) Replace "lodash/is\*" and "lodash/each" with native equivalents. ([@&#8203;zertosh](https://github.com/zertosh)) - `babel-cli`, `babel-generator`, `babel-helper-fixtures`, `babel-helper-transform-fixture-test-runner`, `babel-preset-es2015`, `babel-runtime`, `babel-traverse` - [#&#8203;5042](https://github.com/babel/babel/pull/5042) Use native or lodash util module where full "lodash" is required. ([@&#8203;zertosh](https://github.com/zertosh)) - `babel-code-frame` - [#&#8203;5094](https://github.com/babel/babel/pull/5094) babel-code-frame: Upgrade to js-tokens@3. ([@&#8203;lydell](https://github.com/lydell)) - `babel-plugin-transform-react-jsx` - [#&#8203;5100](https://github.com/babel/babel/pull/5100) Fix broken repository url. ([@&#8203;batista](https://github.com/batista)) - `babel-plugin-transform-decorators` - [#&#8203;5038](https://github.com/babel/babel/pull/5038) Remove unused dependency. ([@&#8203;zertosh](https://github.com/zertosh)) - `babel-plugin-transform-es2015-computed-properties` - [#&#8203;5053](https://github.com/babel/babel/pull/5053) Remove unused define-map helper from computed-properties. ([@&#8203;existentialism](https://github.com/existentialism)) - `babel-cli` - [#&#8203;5027](https://github.com/babel/babel/pull/5027) Dependencies: Upgrade glob to v7. ([@&#8203;ysangkok](https://github.com/ysangkok)) ##### Committers: 23, First PRs: 10 - Andres Suarez ([zertosh](https://github.com/zertosh)) - Andrii Bida ([nomicos](https://github.com/nomicos)) First PR! - Anthony Zotti ([amZotti](https://github.com/amZotti)) First PR! - Anupam ([gitanupam](https://github.com/gitanupam)) First PR! - Artem Yavorsky ([yavorsky](https://github.com/yavorsky)) First PR! - Brian Ng ([existentialism](https://github.com/existentialism)) - Christophe Hurpeau ([christophehurpeau](https://github.com/christophehurpeau)) - Daniel Tschinder ([danez](https://github.com/danez)) - Diogo Franco ([Kovensky](https://github.com/Kovensky)) - Erik Desjardins ([erikdesjardins](https://github.com/erikdesjardins)) - Henry Zhu ([hzoo](https://github.com/hzoo)) - Howard Yeh ([hayeah](https://github.com/hayeah)) First PR! - Janus Troelsen ([ysangkok](https://github.com/ysangkok)) First PR! - Jeff Morrison ([jeffmo](https://github.com/jeffmo)) - Karsten Gohm ([kasn](https://github.com/kasn)) First PR! - Logan Smyth ([loganfsmyth](https://github.com/loganfsmyth)) - Mark Wubben ([novemberborn](https://github.com/novemberborn)) First PR! - Peter Mikula ([peterm0x](https://github.com/peterm0x)) - Ryan Tsao ([rtsao](https://github.com/rtsao)) First PR! - Sergey Rubanov ([chicoxyzzy](https://github.com/chicoxyzzy)) - Simon Lydell ([lydell](https://github.com/lydell)) - Sven SAULEAU ([xtuc](https://github.com/xtuc)) - Sérgio Batista ([batista](https://github.com/batista)) First PR! - [rmacklin](https://github.com/rmacklin) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuOCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS44IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
chore(deps): update babel monorepo
Some checks failed
renovate/artifacts Artifact file update failure
3453a47537
renovate-bot force-pushed renovate/babel-monorepo from 3453a47537 to efc3769f65 2025-03-07 16:05:37 +00:00 Compare
renovate-bot force-pushed renovate/babel-monorepo from efc3769f65 to 53b9ec7477 2025-06-22 09:05:08 +00:00 Compare
renovate-bot force-pushed renovate/babel-monorepo from 53b9ec7477 to c5a46fff49 2025-06-22 10:02:34 +00:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/babel-monorepo:renovate/babel-monorepo
git switch renovate/babel-monorepo

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/babel-monorepo
git switch renovate/babel-monorepo
git rebase master
git switch master
git merge --ff-only renovate/babel-monorepo
git switch renovate/babel-monorepo
git rebase master
git switch master
git merge --no-ff renovate/babel-monorepo
git switch master
git merge --squash renovate/babel-monorepo
git switch master
git merge --ff-only renovate/babel-monorepo
git switch master
git merge renovate/babel-monorepo
git push origin master
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: kumi/aframe-click-drag-component#2
No description provided.