grunt-contrib-sass在不同模块中编译多个文件的最佳实践

时间:2015-04-26 21:14:37

标签: css angularjs sass gruntjs

在不同模块中构建和编译scss文件和相应css文件的最佳方法是什么?

我的第一个想法是将每个scss文件编译到模块中的css文件夹中,但我无法使其正常工作。

我对这种方法的愚蠢行为是

# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

target 'MyProject-iOS' do
pod 'Reachability', '~> 3.2'
pod 'SwiftyJSON', '~> 2.1'
pod 'zipzap', '~> 8.0'
end

target 'MyProject-iOSTests' do

end

根据gruntfile代码看起来像这样:

sass: {
  options: {
    style: 'expanded'
  },
  dev: {
    files: [{
      expand: true,
      cwd: 'public/modules/**/style/',
      src: '*.scss',
      dest: '../css',
      ext: '.css'
    }]
  }
}

我的文件夹结构:

// Default task(s).
    grunt.registerTask('default', ['lint','sass:dev', 'concurrent:default']);

0 个答案:

没有答案