简体   繁体   中英

Is there any way to keep track of all js files created by gulp-rev in rev-mainfest.json file?

I am using gulp-rev to generate minified js files. Now gulp-rev only keep track of last revision in rev-mainfest.json file eg

{
   "product-min.js": "product-min.a2720ef6.js"
}

But I want to keep track of all generated files eg

 {
   "product-min.js": "product-min.a2720ef6.js",
   "product-min.js": "product-min.1f2j3jfj.js"
   "product-min.js": "product-min.33ffsfsd.js"
   .....
 }

Is there anyway to do that?

gulp-rev无法实现您所描述的内容。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM