https://github.com/miguelcastillo/bit-loader-remove
bit-loader plugin to remove a dependency from the bundle
https://github.com/miguelcastillo/bit-loader-remove
Last synced: about 2 months ago
JSON representation
bit-loader plugin to remove a dependency from the bundle
- Host: GitHub
- URL: https://github.com/miguelcastillo/bit-loader-remove
- Owner: MiguelCastillo
- License: mit
- Created: 2017-01-09T05:08:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-19T03:30:15.000Z (over 6 years ago)
- Last Synced: 2025-03-17T20:41:28.987Z (2 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bit-loader-remove
[](https://greenkeeper.io/)
bit-loader plugin to remove modules from bundles
## Example
``` javascript
var Bitbundler = require("@bit/bundler");
var jsPlugin = require("@bit/loader-js");
var removePlugin = require("@bit/loader-remove");var bitbundler = new Bitbundler({
loader: [
jsPlugin(),
removePlugin(['http-request'])
]
})
```