admin管理员组文章数量:1341459
I would like to know if there is a way to add a line between each file when we concat the files using Grunt concat.
Because I get errors due to some inline ments in end of file which, when they are merged ments also the first line of the next file.
A little tricky actually, I'm removing these ments manually but if I could avoid definitively this issue, could be better.
Just add a line for each file concat could be great. I'll remove ments and spaces with Grunt - uglify next.
I would like to know if there is a way to add a line between each file when we concat the files using Grunt concat.
Because I get errors due to some inline ments in end of file which, when they are merged ments also the first line of the next file.
A little tricky actually, I'm removing these ments manually but if I could avoid definitively this issue, could be better.
Just add a line for each file concat could be great. I'll remove ments and spaces with Grunt - uglify next.
Share Improve this question edited Nov 27, 2013 at 21:29 mplungjan 179k28 gold badges182 silver badges240 bronze badges asked Nov 27, 2013 at 21:27 VadorequestVadorequest 18.1k27 gold badges129 silver badges231 bronze badges2 Answers
Reset to default 12https://github./gruntjs/grunt-contrib-concat mentions the separator
option and even gives a usage example for using a custom separator.
Here's their example:
grunt.initConfig({
concat: {
options: {
separator: ';',
},
dist: {
src: ['src/intro.js', 'src/project.js', 'src/outro.js'],
dest: 'dist/built.js',
},
},
});
If that doesn't do it for you, you can probably change the seapartor
line to:
separator: grunt.util.linefeed + ';' + grunt.util.linefeed;
Inspecting the grunt-contrib-concat documentation, you could try the separator
option.
Concatenated files will be joined on this string. If you're post-processing concatenated JavaScript files with a minifier, you may need to use a semicolon ';' as the separator.
本文标签: javascriptAdd breakline between files GruntconcatStack Overflow
版权声明:本文标题:javascript - Add break-line between files Grunt - concat - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743650250a2516198.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论