使用Sourcemap时Grunt中的Windows文件路径

时间:2018-10-18 07:22:43

标签: node.js sass gruntjs workflow responsive

我正在努力使源地图正常工作,我一直在Lynda.com上关注一个教程,该教程的老师在我正在使用Windows的Mac上。我认为两个操作系统之间文件路径之间的差异可能是我的问题。

在本教程中,代码在文件夹树上方的另一个文件夹中创建了一个.css文件,其中sass转换为文件中的css。

//the "wrapper" function

module.exports = function(grunt) {

//Project and task configuration

 grunt.initConfig({
  pkg: grunt.file.readJSON('package.json'),

  //Compile Sass to Css using node-sass

   sass:  {
     options:  {
      sourceMap: false
    },
    dist:  {
      files:  {
        'css/styles.css' : 'assets/scss/styles.scss'
      }
    }
  }
});

//Loading Grunt plugins and tasks

require('load-grunt-tasks')(grunt);

//Custom tasks

grunt.registerTask('default', []);
};

folder view for project

0 个答案:

没有答案