You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhancement
The bundles part of the .dojorc allows users to granularly define what modules go into what bundles. To specify them they provide a bundlename, and a number of exact paths to modules. This is powerful but verbose in some scenario's (ie trying to bundle all french nls bundles to one bundle would require listing all thefr nls modules across your application). To make this a little easier we could trivially add support minimatch in the bundles list like so:
"bundles": {
"fr": "src/**/nls/fr/**"
}
The text was updated successfully, but these errors were encountered:
Enhancement
The
bundles
part of the.dojorc
allows users to granularly define what modules go into what bundles. To specify them they provide a bundlename, and a number of exact paths to modules. This is powerful but verbose in some scenario's (ie trying to bundle all french nls bundles to one bundle would require listing all thefr
nls modules across your application). To make this a little easier we could trivially add support minimatch in the bundles list like so:The text was updated successfully, but these errors were encountered: