-
I was trying to integrate Closure Compiler to my [Advanced Boilerplate](https://github.com/sebastian-software/advanced-boilerplate).
My setup currently looks super simple:
```
ifProdClien…
-
## BUG REPORT
As metioned on the title I give an example:
```javascript
var methodName = 'test';
var json = {
[`${methodName}`]: function (){
}
}
```
is compiled to following co…
-
> Issue originally made by @koistya
### Description
This would allow users to have a quick check whether the code works as expected after minification.
-
We're using a library in our Android RN app.
It works fine in dev, but breaks once minified.
Is there a way to skip minification of certain files?
-
same as the issue #2765
```js
const LockIcon = styled.img.attrs({
src: loginImg,
})``
class Login extends React.Component {
async onLogin() {
console.log('this', this)
try {
…
-
This is a bug report
### Input Code
The following code produces an error:
```js
export class Test {
static staticProp = {};
constructor(props) {
console.log(props);
}…
-
### Steps to reproduce
[`var {foo, baz} = src = {foo: 'bar', baz: 'quux'};`](https://babeljs.io/repl/#?babili=false&evaluate=true&lineWrap=false&presets=es2015%2Creact%2Cstage-2&experimental=true&loo…
-
### Input Code
```js
(() => {}) ? 0 : 1
```
https://babeljs.io/repl/#?babili=false&evaluate=true&lineWrap=false&presets=&targets=&browsers=&builtIns=false&debug=false&code=(()%20%3D%3E%20%7B…
-
### Description
When using Babel, specifically with array polyfills for iterator support, all array prototypes are modified for that support. Therefore, ```toString.call(obj)``` reports as ```[object…
-
> Choose one: is this a bug report or feature request?
bug report
### Input Code
```js
var x = 1;
class F extends Object {
c = x;
constructor() {
f = () => super…