Gulp - Handle read-only permissions for dest files?

前端 未结 3 1561
半阙折子戏
半阙折子戏 2021-01-08 00:37

I have image files with read-only attribute set in source folder. I need to copy them to destination folder in most cases several times in gulpfile.js.

3条回答
  •  孤街浪徒
    2021-01-08 00:39

    By passing options attribute. Set mode value to specify permission for any folders that need to be created as output.

    gulp.dest("destination-path-here", {"mode": "0777"})
    

    cheers :-)

提交回复
热议问题