Just add the new manifest file to the styles folder. For example, you usually have main.scss if you create main2.scss and import some files there. It will create a file for each of your manifest files.
If your sass task looks something like this (yeoman web application generator by default):
sass: { options: { sourceMap: true, includePaths: ['bower_components'] }, dist: { files: [{ expand: true, cwd: '<%= config.app %>/styles', src: ['*.{scss,sass}'], dest: '.tmp/styles', ext: '.css' }] }, server: { files: [{ expand: true, cwd: '<%= config.app %>/styles', src: ['*.{scss,sass}'], dest: '.tmp/styles', ext: '.css' }] } }
In the sass files section, read all .scss/.sass and copy them to .tmp/styles . Later, the copy task will move them to dist/styles .
source share