Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azu/can-bundle-it
A command line tool that detect JavaScript file can be bundled.
https://github.com/azu/can-bundle-it
bundle cli tool webpack
Last synced: 3 months ago
JSON representation
A command line tool that detect JavaScript file can be bundled.
- Host: GitHub
- URL: https://github.com/azu/can-bundle-it
- Owner: azu
- License: mit
- Created: 2019-10-19T13:16:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T01:06:36.000Z (3 months ago)
- Last Synced: 2024-10-24T16:10:37.629Z (3 months ago)
- Topics: bundle, cli, tool, webpack
- Language: TypeScript
- Homepage:
- Size: 923 KB
- Stars: 15
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# can-bundle-it
A command line tool that detect JavaScript file can be bundled.
This command line use [webpack](https://webpack.js.org/) to bundle js files.
## Install
Install with [npm](https://www.npmjs.com/):
npm install can-bundle-it
## Usage
Usage
$ can-bundle-it /path/to/file.js
Options
--verbose Show info/warning/error messages
Bundle Options
--target [String] Bundle target. Available: https://webpack.js.org/configuration/target/
--node-fallback [Boolean] enable Node.js modules fallback
webpack 5 disable Node.js polyfill by default. This options set node-libs-browser to resolve.fallback.
Examples
$ can-bundle-it lib/index.js
$ can-bundle-it lib/*.js --verbose
# Enable Node.js polyfill like "assert"
$ can-bundle-it lib/*.js --verbose --node-fallback- If success to bundle js file, exit status is `0`
- If fail to bundle js file, exit status is `1`## Changelog
See [Releases page](https://github.com/azu/can-bundle-it/releases).
## Running tests
Install devDependencies and Run `npm test`:
npm test
## Contributing
Pull requests and stars are always welcome.
For bugs and feature requests, [please create an issue](https://github.com/azu/can-bundle-it/issues).
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D## Author
- [github/azu](https://github.com/azu)
- [twitter/azu_re](https://twitter.com/azu_re)## License
MIT © azu