generator-yeogurt icon indicating copy to clipboard operation
generator-yeogurt copied to clipboard

Change dest folder structure

Open sahibhuseyn opened this issue 7 years ago • 1 comments

I want to change folder structure in build folder. My folder structure will be:

  • build -frq-templates --assets ---styles --- scripts

    • index.html

I can not customize my folder structure, is there any way to do this?

sahibhuseyn avatar Sep 16 '17 21:09 sahibhuseyn

edit the dest of files in the gulp tasks. so for example in sass task the dest is currently

path.join(taskTarget, dirs.styles.replace(/^_/, ''));

Change it to this:

path.join(taskTarget, 'assets', dirs.styles.replace(/^_/, ''));

This change needs to be applied to the browserify and imagemin tasks as well.

Dan503 avatar Dec 10 '17 02:12 Dan503