Fix webpack ignore plugin

I tried it myself. old one didn't work.
This commit is contained in:
Jonathan Underwood 2019-05-20 00:10:07 +09:00 committed by GitHub
parent 2b05db702c
commit 0b41fc4a3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ $ browserify -r bip39 -s bip39 \
```javascript
...
plugins: [
new webpack.IgnorePlugin(/^\.\/(?!english)/, /bip39\/src\/wordlists$/),
new webpack.IgnorePlugin(/^\.\/wordlists\/(?!english)/, /bip39\/src$/),
],
...
```