Skip to content

Commit

Permalink
Merge pull request #4541 from BigFunger/baseOptimizer-path-fix
Browse files Browse the repository at this point in the history
Fixes paths in the BaseOptimizer to work in windows
  • Loading branch information
spalger committed Aug 4, 2015
2 parents 44a9f70 + 8070436 commit 850f08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optimize/BaseOptimizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class BaseOptimizer extends EventEmitter {
{ test: /\.(html|tmpl)$/, loader: 'raw' },
{ test: /\.png$/, loader: 'url?limit=10000&name=[path][name].[ext]' },
{ test: /\.(woff|woff2|ttf|eot|svg|ico)(\?|$)/, loader: 'file?name=[path][name].[ext]' },
{ test: /\/src\/(plugins|ui)\/.+\.js$/, loader: `auto-preload-rjscommon-deps${mapQ}` },
{ test: /[\/\\]src[\/\\](plugins|ui)[\/\\].+\.js$/, loader: `auto-preload-rjscommon-deps${mapQ}` },
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
Expand Down

0 comments on commit 850f08f

Please sign in to comment.