Hi,
I have a problem with multi source files. My configuration:
babel: {
options: {
minified: true
},
plugins: {
files: {
'dir/min/plugins.min.js': [
'dir/plugins.core.file.js',
'dir/plugins/*.js' // single plugin files -- IGNORED!!! Why?
]
}
}
},
but output (destination) file is created based only on dir/plugins.core.file.js and rest of sources (dir/plugins/*.js) are ignored.
What am I doing wrong?
Hi,
I have a problem with multi source files. My configuration:
but output (destination) file is created based only on
dir/plugins.core.file.jsand rest of sources (dir/plugins/*.js) are ignored.What am I doing wrong?