gpt4 book ai didi

javascript - 使用 grunt 将单个文件连接到目录中的每个文件

转载 作者:行者123 更新时间:2023-11-28 09:02:06 25 4
gpt4 key购买 nike

使用 Grunt,我想将一个文件连接到构建目录中的所有文件。这样做的目的是将 IE 特定的 CSS 文件附加(或可能前置)到构建 CSS 文件中。

要完成此任务:

build/
file1.css
file2.css
file3.css

并创建这个:

build/
file1.css
file1.ie.css
file2.css
file2.ie.css
file3.css
file3.ie.css

我认为扩展选项可能是我正在寻找的,但我不知道如何让它做我想做的事。

最佳答案

尝试使用 grunt-contrib-concat 中的 banner 选项:

concat: {
dist: {
options: {
banner: '/* IE specific things here */',
},
expand: true,
cwd: 'build/',
ext: '.ie.css',
src: ['**/*.css'],
dest: 'build/',
},
},

关于javascript - 使用 grunt 将单个文件连接到目录中的每个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17602297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com