Dojo Build - Copyonly Does Not Work In Profile
I am creating a custom build in DOJO. I need to to keep in the build folder dojoConfig.js file not minified. At the moment I am trying to: - exclude dojoConfig.js from build using
Solution 1:
I'm not exactly sure if this is your problem, but miniExclude
takes precedence over copyOnly
, so marking something as both means that it won't be included in build output by default (since mini: true
is the default and you usually don't want to change that). If you always want a file to be copied and not otherwise processed, just include it in copyOnly
, not miniExclude
.
Post a Comment for "Dojo Build - Copyonly Does Not Work In Profile"