javascript - grunt csscomb not processing all scss files -


i've tried set grunt csscomb task, i'm not sure if i'm getting globbing pattern right:

csscomb: {     dynamic_mappings: {         expand: true,         cwd: 'app/',         src: '**/*.scss',         dest: 'app/assets/tempcomb'     },     options: {       config: 'csscomb.json'     } }, 

here folder architecture:

app ├── assets │   ├── css │   │   ├── imports │   │   │   ├── helpers │   │   │   │   └── _helpers.scss │   │   │   ├── layout │   │   │   │   ├── _fonts.scss │   │   │   │   ├── _grid.scss │   │   │   │   └── _reset.scss │   │   │   └── modules │   │   │       ├── _dev.scss │   │   │       ├── _indicators.scss │   │   │       ├── _modal.scss │   │   │       ├── _nav.scss │   │   │       └── _ref.scss │   │   ├── main.scss │   │   └── pages │   │       ├── bibliography.scss │   │       ├── cover.scss │   │       ├── example.scss │   │       ├── examples │   │       │   ├── _bar-graph.scss │   │       │   ├── _modal-transitions.scss │   │       │   ├── _modals.scss │   │       │   ├── _scroll-end-animation.scss │   │       │   ├── _scrollable.scss │   │       │   └── _tabs.scss │   │       ├── index.scss │   │       └── prescribing-information.scss │   ├── fonts │   ├── img │   ├── js │   ├── tempcomb 

what want @ directories under app, take scss files , write them tempcomb while maintaining folder structure.

currently replicates folder structure fine, outputs scss files in layout folder.

if explain me why happening appreciated!

p.s. before task runs, tempcomb folder doesn't exist. i've added architecture diagram show ends up.


Comments

Popular posts from this blog

c# - Store DBContext Log in other EF table -

Nuget pack csproj using nuspec -

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -