Skip to content

Commit

Permalink
added "exports" to magic module list
Browse files Browse the repository at this point in the history
  • Loading branch information
CezarCretu committed Sep 25, 2014
1 parent c3d05db commit 0aa1a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RequireJsNet.Compressor/AutoDependency/ScriptProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void Process()
var deps =
flattenedResults.SelectMany(r => r.Dependencies)
.Where(r => !r.StartsWith("i18n"))
.Except(new List<string> { "require", "module" });
.Except(new List<string> { "require", "module", "exports" });

Dependencies = deps.Select(r => GetModulePath(r)).ToList();
var shim = this.GetShim(RelativeFileName);
Expand Down

0 comments on commit 0aa1a38

Please sign in to comment.