iversong / fis3-deploy-alioss

fis3 deploy aliyun oss plugin
10 stars 5 forks source link

允许把文件写到bucket内相对路径 #1

Closed zxkane closed 8 years ago

zxkane commented 8 years ago

AliOSS实现上是没有目录的概念。但仍然提供了特殊object foldername/来组织文件层次。

希望能增加相对路径配置,能更好的管理上传的资源文件。

iversong commented 8 years ago

@zxkane 插件尽量简化配置,相对路径配置很简单啊,直接fis.match()配置即可;

// static中静态资源发布时产出到 /static 目录下
fis.match('/static/**', {
    isMod : true,
    release: '/static/$0' 
});

或者统一设置发布路径:

// 设置静态资源发布路径
fis.config.set("statics","/static/debug-1.0");
// static中静态资源发布时产出到上面路径
fis.match('/static/**', {
    isMod : true,
    release: '${statics}/$0' 
});
zxkane commented 8 years ago

没想到靠fis来修改文件路径。谢谢。