gpt4 book ai didi

javascript - grunt-injector - 如何使用 Grunt 的 'dynamically built files objects.'?

转载 作者:行者123 更新时间:2023-11-30 17:23:15 25 4
gpt4 key购买 nike

Grunt 的动态构建文件对象的结构为:

files: [
{
expand: true, // Enable dynamic expansion.
cwd: 'lib/', // Src matches are relative to this path.
src: ['**/*.js'], // Actual pattern(s) to match.
dest: 'build/', // Destination path prefix.
ext: '.min.js', // Dest filepaths will have this extension.
extDot: 'first' // Extensions in filenames begin after the first dot
},
]

但是这种格式在 grunt-injector 中不起作用:

injector: {
options: {
destFile : 'app/static/index.html',
ignorePath: 'app/'
},
local_dependencies: {
files: [
expand: true,
cwd: 'app/static/css/',
src: ['*.css'],
dest: '/static/css',
ext: '.css'
]
}
},

关于如何使用 Grunt 的特定“动态构建文件对象”有什么建议吗?

最佳答案

如果有人有这个问题,我想你不能使用像 local_dependencies 这样的子类别。

这对我有用:

    injector: {
options: {
destFile : 'app/static/index.html',
ignorePath: 'app/'
},
files: {
expand: true,
cwd: 'app/static/css/',
src: ['*.css'],
dest: 'app/static/css',
ext: '.css'
}
},

关于javascript - grunt-injector - 如何使用 Grunt 的 'dynamically built files objects.'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24767092/

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