- Since we're stating that compass is a development dependency in our gemspec, and we use bundle to install it, we should make sure that grunt is using the correct (bundled) version of compass. - This is especially important since many of the older versions of compass are buggy (see https://github.com/gruntjs/grunt-contrib-compass/issues/204)
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
module.exports = {
|
|
jasmine: {
|
|
options: {
|
|
cssDir: 'lib/jasmine-core/',
|
|
sassDir: 'src/html',
|
|
outputStyle: 'compact',
|
|
noLineComments: true,
|
|
bundleExec: true
|
|
}
|
|
}
|
|
};
|