Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/07akioni/rollup-bug
https://github.com/07akioni/rollup-bug
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/07akioni/rollup-bug
- Owner: 07akioni
- Created: 2020-12-05T16:01:05.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-05T16:09:32.000Z (about 4 years ago)
- Last Synced: 2024-11-24T16:26:01.730Z (about 1 month ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Usage
Redundant import generated by `rollConfig.treeshake = false` may create unusable output (for rollup it self).```bash
npm run rollup-app-no-shake
# { a: 'a', b: undefined } not correctnpm run rollup-app
# { a: 'a', b: [ 'b', 'a' ] } correctnpm run webpack-app-no-shake
# { a: 'a', b: [ 'b', 'a' ] } correctnpm run webpack-app
# { a: 'a', b: [ 'b', 'a' ] } correct
```