Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sonicoder86/babel-webpack-tree-shaking
Tree-shaking example with Babel and Webpack
https://github.com/sonicoder86/babel-webpack-tree-shaking
babel babili tree-shaking webpack
Last synced: 3 days ago
JSON representation
Tree-shaking example with Babel and Webpack
- Host: GitHub
- URL: https://github.com/sonicoder86/babel-webpack-tree-shaking
- Owner: sonicoder86
- Created: 2016-08-22T12:00:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-17T10:46:33.000Z (about 7 years ago)
- Last Synced: 2024-02-23T12:28:41.973Z (9 months ago)
- Topics: babel, babili, tree-shaking, webpack
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 251
- Watchers: 12
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Tree-shaking example with Babel and Webpack
[![devDependency Status](https://david-dm.org/blacksonic/babel-webpack-tree-shaking/dev-status.svg)](https://david-dm.org/blacksonic/babel-webpack-tree-shaking?type=dev)This repository shows how to configure Babel and Webpack to enable tree-shaking.
It will eliminate dead code if they have ES2015 module format.The source code can be found in the ```app/``` folder,
where the main file ```car.js``` doesn't use all the dependencies from ```engine.js```.
The built and transpiled files can be found in the ```/dist``` folder.Webpack only marks unused code at bundling and leaves the removing part to minifiers.
This is why all the code is included in development builds in contrary to Rollup.If you want a more detailed explanation,
[read this article](https://blog.craftlab.hu/how-to-do-proper-tree-shaking-in-webpack-2-e27852af8b21).### Webpack + Babel + UglifyJS
Can only remove unused functions and variables.
For development build run ```npm run webpack``` (ES2015 -> ES5 bundle).
For production build run ```npm run webpack-prod``` (ES2015 -> ES5 bundle -> UglifyJS).
When transpiling classes with Babel, it generates an IIFE with an assignment to the prototype.
It is considered as a side effect by UglifyJS and it skips removing of it.See the issues below:
- [Webpack issue](https://github.com/webpack/webpack/issues/2899) and a [more detailed one](https://github.com/webpack/webpack/issues/2867)
- [UglifyJS issue](https://github.com/mishoo/UglifyJS2/issues/1261)### Webpack + Babili
Can remove unused classes, functions and variables.
For development build run ```npm run webpack-es2015``` (ES2015 -> ES2015 bundle).
For production build run ```npm run webpack-es2015-prod``` (ES2015 -> ES2015 bundle -> Babili).
It uses the [Babili](https://github.com/babel/babili) ES6+ aware minifier and solves the issues what UglifyJS has.