icy0307

Results 13 issues of icy0307

## Summary Hey , thanks for the awesome library! I'm trying to build a workflow to publish prerelease packages for my team. Let's say we have a package A, which...

# Bug report With mode: production on, and "sideEffects:false", exported function that are unused after dead code removal remain in the bundle, if the module is imported dynamically. https://stackblitz.com/edit/github-2yf5yf?file=dist/main.js **What...

webpack Plugins can provide hooks for other Plugins; take [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) for example, we can write a custom plugin depending on it ``` js // If your plugin is direct dependent...

**Is your feature request related to a problem? Please describe.** I try to limit the size of the critical path our application needs on ci. However, our application is running...

feature request
need investigate

`rewrite_polyfills= false` still inject polyfills when language_out is below ECMASCRIPT_2017 for async function # step to reproduce 1. echo 'export async function test(){console.log('test');}'> my_program.js 2. npx google-closure-compiler --js=my_program.js --js_output_file=out.js --rewrite_polyfills=false...

``` @injectable() class Ninja implements Warrior { @inject(TYPES.Weapon) private _katana: Weapon; @inject(TYPES.ThrowableWeapon) private _shuriken: ThrowableWeapon; public fight() { return this._katana.hit(); } public sneak() { return this._shuriken.throw(); } } ``` ```...

> What is the current behavior? CSSTransition add classname to child component by dom API directly, not by react. If react updates after CSSTransition adding class, CSSTransition's class names ,like...

## What's the issue? TypeError: baseVisitor[type] is not a function when encountering ChainExpression ## How do we reproduce the issue? 1. Create a js file that contains [Optional chaining ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining)...

**Please only file bugs/feature requests for rollup-plugin-closure-compiler here.** Rollup provides an output option called preserveModules. > Instead of creating as few chunks as possible, this mode will create separate chunks...