Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
fix: typo "filterd" -> "filtered" (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
lencioni authored and joshwiens committed Jun 29, 2017
1 parent 821665f commit 238c373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class UglifyJsPlugin {
const files = [];
chunks.forEach((chunk) => files.push.apply(files, chunk.files));
files.push.apply(files, compilation.additionalChunkAssets);
const filterdFiles = files.filter(ModuleFilenameHelpers.matchObject.bind(undefined, options));
filterdFiles.forEach((file) => {
const filteredFiles = files.filter(ModuleFilenameHelpers.matchObject.bind(undefined, options));
filteredFiles.forEach((file) => {
const oldWarnFunction = uglify.AST_Node.warn_function;
const warnings = [];
let sourceMap;
Expand Down

0 comments on commit 238c373

Please sign in to comment.