diff --git a/dist/components/inject-as-comment.js b/dist/components/inject-as-comment.js index 9308231..39a1aa9 100644 --- a/dist/components/inject-as-comment.js +++ b/dist/components/inject-as-comment.js @@ -33,15 +33,15 @@ var InjectAsComment = (function () { return new Promise(function (resolve, reject) { resolve(); }); }; InjectAsComment.prototype.injectIntoCss = function (asset) { - var modAsset = "/** [" + config.SHORT + "] Build version: " + this.context.version + " **/ " + endOfLine + " " + asset.source() + " "; + var modAsset = "/** [" + config.SHORT + "] Build version: " + this.context.version + " **/" + endOfLine + asset.source(); asset.source = function () { return modAsset; }; }; InjectAsComment.prototype.injectIntoHtml = function (asset) { - var modAsset = " " + endOfLine + " " + asset.source() + " "; + var modAsset = "" + endOfLine + asset.source(); asset.source = function () { return modAsset; }; }; InjectAsComment.prototype.injectIntoJs = function (asset) { - var modAsset = "// [" + config.SHORT + "] Build version: " + this.context.version + " " + endOfLine + " " + asset.source() + " "; + var modAsset = "// [" + config.SHORT + "] Build version: " + this.context.version + endOfLine + " " + asset.source(); asset.source = function () { return modAsset; }; }; return InjectAsComment;