fex-team / fis3-deploy-zip

zip 压缩器
BSD 2-Clause "Simplified" License
2 stars 2 forks source link

针对指定文件夹压缩无效 #5

Open lijicheng123 opened 5 years ago

lijicheng123 commented 5 years ago

如果我这么压缩

fis.match('**', {
    deploy: [
        fis.plugin('zip'),
        fis.plugin('local-deliver', {
            to: 'static/all.zip'
        })
    ]
})

这样是OK的 如果我这样压缩:

fis.match('public', {
    deploy: [
        fis.plugin('zip'),
        fis.plugin('local-deliver', {
            to: 'static/all.zip'
        })
    ]
})

这样是没有任何效果的

请问有什么办法吗

oxUnd commented 5 years ago

public/** ??