Allow for extra paths to be added during r.js building.
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -537,9 +537,9 @@ module.exports = function (grunt) { | ... | @@ -537,9 +537,9 @@ module.exports = function (grunt) { |
537 | 537 | ||
538 | dir: 'dist/build/scripts', | 538 | dir: 'dist/build/scripts', |
539 | locale: 'en-us', | 539 | locale: 'en-us', |
540 | paths: { | 540 | paths: _.extend({ |
541 | 'defaults': 'empty:', | 541 | 'defaults': 'empty:', |
542 | }, | 542 | }, mpConfig.requirePaths), |
543 | modules: mpConfig.modules, | 543 | modules: mpConfig.modules, |
544 | }, | 544 | }, |
545 | } | 545 | } | ... | ... |
-
Please register or sign in to post a comment