First time using this task and what I'm trying to achieve is the following:
copy all directories/files from src/js/bower_components/*
to build/assets/js/vendor/
I've tried using cwd
property but it doesn't work at all when I use it.. I've set it to: src/js/bower_components/
From src
.
├── Gruntfile
└── src
└── js
└── bower_components
└── jquery
I currently get:
.
├── Gruntfile
└── build
└── assets
└── js
└── vendor
src
└── js
└── bower_components
└── jquery
What I'd like
.
├── Gruntfile
└── build
└── assets
└── js
└── vendor
└──jquery
Here's my current grunt task
copy: {
main: {
src: 'src/js/bower_components/*',
dest: 'build/assets/js/vendor/',
expand: true,
}
},
Thanks for any help