Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency babel-preset-babili to v0.1.4 #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 7, 2020

This PR contains the following updates:

Package Type Update Change
babel-preset-babili devDependencies minor 0.0.9 -> 0.1.4

Release Notes

babel/babili

v0.1.4

Compare Source

Just some various bug fixes!

🐛 Bug Fix
Committers: 3

v0.1.3

Compare Source

🚀 New Feature
  • babel-plugin-minify-constant-folding
    • #​505 Evaluate some String and Array instance methods at compile time. (@​j-f1)
  • babel-plugin-minify-dead-code-elimination
🐛 Bug Fix
  • babel-plugin-transform-property-literals
  • babel-plugin-minify-mangle-names
🏠 Internal
  • babel-helper-flip-expressions, babel-plugin-minify-dead-code-elimination, babel-plugin-minify-guarded-expressions, babel-plugin-minify-simplify, babel-plugin-transform-inline-consecutive-adds
  • Other
Committers: 4

v0.1.2

Compare Source

  • babel-plugin-minify-mangle-names@0.1.2
  • babel-preset-babili@0.1.2
  • babili@0.1.2
  • gulp-babili@0.1.2
🐛 Bug Fix
  • babel-plugin-minify-mangle-names
💅 Polish
Committers: 1

v0.1.1

Compare Source

Summary
  • Better mangling - significant improvement in output code size.
  • The preset options are flattened
  • Smoke tests
  • Use Yarn & Prettier
  • And a lot of bug fixes (refer below)

Check Benchmarks for info about how Babili compares with other minifiers for a few samples.

Updated Pacakges:
  • babel-helper-evaluate-path@0.1.0
  • babel-helper-flip-expressions@0.1.1
  • babel-helper-is-void-0@​0.1.1
  • babel-helper-mark-eval-scopes@0.1.1
  • babel-helper-remove-or-void@0.1.1
  • babel-helper-to-multiple-sequence-expressions@0.1.1
  • babel-plugin-minify-builtins@0.1.1
  • babel-plugin-minify-constant-folding@0.1.1
  • babel-plugin-minify-dead-code-elimination@0.1.6
  • babel-plugin-minify-flip-comparisons@0.1.1
  • babel-plugin-minify-guarded-expressions@0.1.1
  • babel-plugin-minify-infinity@0.1.1
  • babel-plugin-minify-mangle-names@0.1.1
  • babel-plugin-minify-numeric-literals@0.1.1
  • babel-plugin-minify-replace@0.1.1
  • babel-plugin-minify-simplify@0.1.1
  • babel-plugin-minify-type-constructors@0.1.1
  • babel-plugin-transform-inline-consecutive-adds@0.1.1
  • babel-plugin-transform-inline-environment-variables@0.1.1
  • babel-plugin-transform-member-expression-literals@6.8.3
  • babel-plugin-transform-merge-sibling-variables@6.8.4
  • babel-plugin-transform-minify-booleans@6.8.2
  • babel-plugin-transform-node-env-inline@0.1.1
  • babel-plugin-transform-property-literals@6.8.3
  • babel-plugin-transform-regexp-constructors@0.1.1
  • babel-plugin-transform-remove-console@6.8.3
  • babel-plugin-transform-remove-debugger@6.8.3
  • babel-plugin-transform-remove-undefined@0.1.1
  • babel-plugin-transform-simplify-comparison-operators@6.8.3
  • babel-plugin-transform-undefined-to-void@6.8.2
  • babel-preset-babili@0.1.1
  • babili@0.1.1
  • gulp-babili@0.1.1
##### 💥 Breaking Change * `babel-preset-babili` * [#​508](https://togithub.com/babel/minify/pull/508) Flatten options. ([@​boopathi](https://togithub.com/boopathi)) * `babel-plugin-minify-constant-folding` * [#​490](https://togithub.com/babel/minify/pull/490) Remove jsesc. ([@​boopathi](https://togithub.com/boopathi)) ##### 🚀 New Feature * `babel-plugin-minify-mangle-names` * [#​395](https://togithub.com/babel/minify/pull/395) Reuse removed vars in mangler. ([@​boopathi](https://togithub.com/boopathi)) ##### 🐛 Bug Fix * `babel-plugin-minify-builtins` * [#​533](https://togithub.com/babel/minify/pull/533) handle deopt case in builtins properly. ([@​vigneshshanmugam](https://togithub.com/vigneshshanmugam)) * `babel-plugin-transform-inline-consecutive-adds` * [#​523](https://togithub.com/babel/minify/pull/523) Fix collapse with circular reference. ([@​jhen0409](https://togithub.com/jhen0409)) * `babel-plugin-minify-mangle-names` * [#​518](https://togithub.com/babel/minify/pull/518) Fix mangling of Named Exports in Modules. ([@​boopathi](https://togithub.com/boopathi)) * `babel-plugin-minify-simplify` * [#​517](https://togithub.com/babel/minify/pull/517) Fix crashing in simplify plugin. Deopt instead. ([@​boopathi](https://togithub.com/boopathi)) * [#​482](https://togithub.com/babel/minify/pull/482) handle default statements with fallthrough properly [Closes [#​423](https://togithub.com/babel/minify/issues/423)]. ([@​vigneshshanmugam](https://togithub.com/vigneshshanmugam)) * `babel-plugin-minify-constant-folding` * [#​490](https://togithub.com/babel/minify/pull/490) Remove jsesc. ([@​boopathi](https://togithub.com/boopathi)) * `babel-plugin-minify-builtins`, `babel-plugin-minify-mangle-names`, `babel-preset-babili` * [#​472](https://togithub.com/babel/minify/pull/472) fix builtins plugins from leaking vars. ([@​vigneshshanmugam](https://togithub.com/vigneshshanmugam)) * `babel-plugin-transform-member-expression-literals`, `babel-plugin-transform-property-literals` * [#​466](https://togithub.com/babel/minify/pull/466) Deopt number like properties (Closes [#​464](https://togithub.com/babel/minify/issues/464)). ([@​boopathi](https://togithub.com/boopathi)) ##### 💅 Polish * `babel-preset-babili` * [#​508](https://togithub.com/babel/minify/pull/508) Flatten options. ([@​boopathi](https://togithub.com/boopathi)) ##### 📝 Documentation * Other * [#​496](https://togithub.com/babel/minify/pull/496) Use absolute links in CONTRIBUTING.md. ([@​aaronang](https://togithub.com/aaronang)) * [#​494](https://togithub.com/babel/minify/pull/494) Add smoke test docs [skip ci]. ([@​boopathi](https://togithub.com/boopathi)) * [#​480](https://togithub.com/babel/minify/pull/480) Update Contributing.md [skip ci]. ([@​boopathi](https://togithub.com/boopathi)) * [#​475](https://togithub.com/babel/minify/pull/475) Update CONTRIBUTING.md [skip ci]. ([@​alxpy](https://togithub.com/alxpy)) * [#​462](https://togithub.com/babel/minify/pull/462) Use absolute paths in CONTRIBUTING.md. ([@​aaronang](https://togithub.com/aaronang)) ##### 🏠 Internal * Other * [#​527](https://togithub.com/babel/minify/pull/527) Add butternut to benchmarks. ([@​boopathi](https://togithub.com/boopathi)) * [#​504](https://togithub.com/babel/minify/pull/504) Add CircleCI badge [skip ci]. ([@​boopathi](https://togithub.com/boopathi)) * [#​497](https://togithub.com/babel/minify/pull/497) Set static coverage % & disable patch. ([@​boopathi](https://togithub.com/boopathi)) * [#​495](https://togithub.com/babel/minify/pull/495) Add Circle CI. ([@​boopathi](https://togithub.com/boopathi)) * [#​492](https://togithub.com/babel/minify/pull/492) Smoke Tests. ([@​boopathi](https://togithub.com/boopathi)) * [#​488](https://togithub.com/babel/minify/pull/488) Use Yarn. ([@​boopathi](https://togithub.com/boopathi)) * [#​489](https://togithub.com/babel/minify/pull/489) Create benchmark_cache dir if it doesn't exist. ([@​dirtybit](https://togithub.com/dirtybit)) * [#​474](https://togithub.com/babel/minify/pull/474) Enable code coverage. ([@​alxpy](https://togithub.com/alxpy)) * [#​470](https://togithub.com/babel/minify/pull/470) Fix Benchmark scripts. ([@​boopathi](https://togithub.com/boopathi)) * [#​478](https://togithub.com/babel/minify/pull/478) 🚀 Prettier. ([@​boopathi](https://togithub.com/boopathi)) ##### Chore * [#​522](https://togithub.com/babel/minify/pull/522) Upgrade deps. ([@​boopathi](https://togithub.com/boopathi)) ##### Committers: 8 - Aaron Ang ([aaronang](https://togithub.com/aaronang)) - Alex Kuzmenko ([alxpy](https://togithub.com/alxpy)) - Andrew Start ([andrewstart](https://togithub.com/andrewstart)) - Boopathi Rajaa ([boopathi](https://togithub.com/boopathi)) - Jhen-Jie Hong ([jhen0409](https://togithub.com/jhen0409)) - Joshua Carter ([JoshuaCWebDeveloper](https://togithub.com/JoshuaCWebDeveloper)) - Sertac Olgunsoylu ([dirtybit](https://togithub.com/dirtybit)) - Vignesh Shanmugam ([vigneshshanmugam](https://togithub.com/vigneshshanmugam))

v0.1.0

Compare Source

v0.0.12

Compare Source

  • babel-helper-mark-eval-scopes@0.0.3
  • babel-helper-to-multiple-sequence-expressions@0.0.4
  • babel-plugin-minify-builtins@0.0.2
  • babel-plugin-minify-dead-code-elimination@0.1.4
  • babel-plugin-minify-mangle-names@0.0.8
  • babel-plugin-minify-replace@0.0.4
  • babel-plugin-minify-simplify@0.0.8
  • babel-plugin-minify-type-constructors@0.0.4
  • babel-plugin-transform-regexp-constructors@0.0.6
  • babel-plugin-transform-remove-console@6.8.1
  • babel-plugin-transform-remove-debugger@6.8.1
  • babel-preset-babili@0.0.12
  • babili@0.0.12
  • gulp-babili@0.0.2
💥 Breaking Change
🚀 New Feature
🐛 Bug Fix
  • babel-plugin-minify-dead-code-elimination
  • babel-plugin-minify-simplify
  • babel-plugin-transform-remove-console, babel-plugin-transform-remove-debugger
  • babel-plugin-minify-mangle-names
💅 Polish
  • babel-plugin-minify-mangle-names
  • babel-plugin-transform-regexp-constructors
📝 Documentation
Chore
Committers: 5

v0.0.11

Compare Source

🐛 Bug Fix
  • babel-plugin-transform-merge-sibling-variables, babel-preset-babili
  • babel-plugin-minify-mangle-names
  • babel-plugin-minify-dead-code-elimination
  • babel-plugin-minify-constant-folding, babel-plugin-minify-dead-code-elimination, babel-preset-babili
  • babel-plugin-minify-constant-folding
  • babel-plugin-transform-remove-undefined
  • babel-helper-mark-eval-scopes, babel-plugin-minify-dead-code-elimination, babel-plugin-minify-mangle-names
📝 Documentation
Committers: 5

v0.0.10

  • babel-helper-flip-expressions@0.0.2
  • babel-helper-to-multiple-sequence-expressions@0.0.3
  • babel-plugin-minify-dead-code-elimination@0.1.2
  • babel-plugin-minify-flip-comparisons@0.0.2
  • babel-plugin-minify-guarded-expressions@0.0.4
  • babel-plugin-minify-mangle-names@0.0.6
  • babel-plugin-minify-simplify@0.0.6
  • babel-plugin-minify-type-constructors@0.0.3
  • babel-plugin-transform-inline-consecutive-adds@0.0.2
  • babel-plugin-transform-inline-environment-variables@0.0.2
  • babel-plugin-transform-member-expression-literals@6.8.1
  • babel-plugin-transform-merge-sibling-variables@6.8.1
  • babel-plugin-transform-node-env-inline@0.0.2
  • babel-plugin-transform-property-literals@6.8.1
  • babel-plugin-transform-regexp-constructors@0.0.5
  • babel-plugin-transform-remove-undefined@0.0.4
  • babel-plugin-transform-simplify-comparison-operators@6.8.1
  • babel-preset-babili@0.0.10
  • babili@0.0.10
🚀 New Feature
🐛 Bug Fix
📝 Documentation
🏠 Internal
Chore
Committers: 10

Renovate configuration

📅 Schedule: At any time (no schedule defined).

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

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by WhiteSource Renovate. View repository job log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant