gulp重命名:轻松重命名文件 源码
gulp重命名 gulp-rename是一个插件,可以轻松地重命名文件。 用法 gulp-rename提供简单的文件重命名方法。 var rename = require ( "gulp-rename" ) ; // rename to a fixed value gulp . src ( "./src/main/text/hello.txt" ) . pipe ( rename ( "main/text/ciao/goodbye.md" ) ) . pipe ( gulp . dest ( "./dist" ) ) ; // ./dist/main/text/ciao/goodbye.md // rename via mutating function gulp . src ( "./src/**/hello.txt" ) . pipe ( rename ( functio
用户评论