Workiva / wGulp

Opinionated Suite of Gulp Tasks for JavaScript and TypeScript projects.
Apache License 2.0
12 stars 9 forks source link

`gulp build` sass/css tasks create duplicate css files #104

Open jimhotchkin-wf opened 9 years ago

jimhotchkin-wf commented 9 years ago

When running gulp build the css generated from the ./sass files is duplicated under the ./build directory:

build
├── build
│   └── css
│       ├── app.css
│       └── app_ie.css
├── css
│   ├── app.css
│   └── app_ie.css
├── img
│   ├── tour-retina-seb451b19e0.png
│   └── tour-s5a6a31895b.png
└── src
    ├── app.js
    ├── appConfig.js

My build task tree is as follows:

build: {
        include: ['compass', 'copy:vendorLibs'],
        exclude: ['sass']
        }

My customized paths are as follows:

path: {
        buildDeps: './build/deps/',
        vendorLibs: './dist/vendor/',
        styleIncludePaths: ['jspm_packages/github/Workiva/web-skin@0.4.16/sass/']
    }
maxwellpeterson-wf commented 9 years ago

This must be a result of some kind of compass config. Will need to look into it in more detail