UNPKG

737 BMarkdownView Raw
1### 3rd party plugin notes.
2
3#### [gulp-sass-generate-contents](https://github.com/andrewbrandwood/gulp-sass-generate-contents)
4To enable the compiling of a list of contents in the main scss file and to import all the correct files. It is required to have a comment at the top of each sass file.
5
6anything on the first line other than a double slash // will result in the file being ignored from the contents and the imports. (see options to change this)
7
8#### [run-sequence](https://www.npmjs.com/package/run-sequence)
9Gulp is an asynchronous task runner. We need the gulp-sass-generate-contents to run and complete before we can compile the sass. The run-sequence plugin allows us to run the contents file before compiling our SASS.
\No newline at end of file