An open API service indexing awesome lists of open source software.

https://github.com/env0/webpack-reproduce


https://github.com/env0/webpack-reproduce

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Reproducing Webpack issue [#12339](https://github.com/webpack/webpack/issues/12339)
`!new.target.isInitialized` is bundled as `true`

To reproduce:
1. `npm i`
2. `npm run webpack`

**Expected behavior**
`if(!new.target.isInitialized)` should be bundled as `if(!new.target.isInitialized)`

**Actual behavior**
`if(!new.target.isInitialized)` is bundled as `if(true)`