Skip to content

Commit

Permalink
Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Oct 1, 2012
1 parent 0987426 commit cee5b12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/module.js
Expand Up @@ -756,6 +756,8 @@ var _rollup = function (mod, name, options, callback) {
}),
modName = mod.name || name,
fileName = mod.basefilename || name,
postfix = "YUI.add('" + modName + "', function (Y, NAME) {" +
(options.strict ? '"use strict"; ' : "") + "}, '@VERSION@'" + stringify(mod.config) + ");\n";
regex = (typeof mod.regex !== 'undefined') ? mod.regex : loggerRegex,
files = [];

Expand All @@ -766,7 +768,7 @@ var _rollup = function (mod, name, options, callback) {
queue.read(files)
.concat()
.jsstamp({
postfix: "YUI.add('" + modName + "', function (Y, NAME) {" + (options.strict ? '"use strict"; ' : "") + "}, '@VERSION@'" + stringify(mod.config) + ");\n"
postfix: postfix
})
.replace(replaceOptions)
.log('writing rollup file ' + path.join(fileName, fileName + '-debug.js'))
Expand Down

0 comments on commit cee5b12

Please sign in to comment.