../deps/mpg123/src/output/alsa.c:19:28: fatal error: alsa/asoundlib.h: No such file or directory
function* collectionIterator (models) {
for (let model of models) {
yield model.attributes;
}
}
grunt.registerTask('createXml', 'Creates XML by template', function () {
var template = grunt.file.read(this.data.tpl);
var xml = grunt.template.process(template, this.data.vars);
grunt.file.write(this.target, xml);
});
// пример конфига
grunt.initConfig({
deployPath: 'ftp://example.ftp/',
createXml: {
'.idea/conf.xml': {
tpl: 'path/to/template.xml',
vars: {
var1: '<%= deployPath %>'
}
}
}
});