@mindev/min-plugin-filesync
v2.0.1
Published
min plugin-filesync
Downloads
3
Readme
min plugin-filesync
安装
$ npm install @mindev/min-plugin-filesync --save-dev
配置 min.config.js
interface Config {
cwd: String
from: String | Array,
to: String,
filter: RegExp,
validate: Function
force: Boolean,
ignore: String | Array
}
module.exports = {
plugins: {
filesync: {
cwd: 'assets'
from: ['**/*'],
to: 'img/',
filter: /\.png$/,
validate (filename: string) {
return true
}
force: true,
ignore: ['*.jpg']
},
// or
filesync: {
img: {
cwd: 'assets'
from: '**/*',
to: '/'
},
wxFile: {
cwd: 'pages'
from: '**/*',
filter: /index\.(wxml|wxss|js|json)$/,
to: '/'
}
},
// or
filesync: [
// for img
{
cwd: 'assets'
from: ['**/*.jpg', '**/*.jpeg', '**/*.png', '**/*.gif', '**/*.webp'],
to: '/'
},
// for wxFile
{
cwd: 'pages'
from: ['**/*.wxml', '**/*.wxss', '**/*.js', '**/*.json'],
to: '/'
}
]
}
}
参数说明
Tip
- min cli 2.x 版本开始支持