我只是设置了一个新项目来测试 libsass。
安装了 Foundation、bower 和 grunt。
该项目在 grunt watch 下运行良好。
然后我在 Chrome --> DevTools 中打开项目。
我正在检查默认 app.scss 生成的 css,
我所有的样式都映射到 _visibility.scss,而这些样式实际上在 app.scss 中
我的 Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
options: {
includePaths: ['bower_components/foundation/scss'],
sourceMap: true,
debugInfo: true
},
dist: {
options: {
outputStyle: 'nested'
},
files: {
'css/app.css': 'scss/app.scss'
}
}
},
watch: {
grunt: { files: ['Gruntfile.js'] },
sass: {
files: 'scss/**/*.scss',
tasks: ['sass']
}
}
});
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('build', ['sass']);
grunt.registerTask('default', ['build','watch']);
}
我的配置有问题吗?