0.3.0 • Published 10 years ago

grunt-sass-convert v0.3.0

Weekly downloads
18
License
-
Repository
github
Last release
10 years ago

grunt-sass-convert

run sass-convert with grunt. My own purpose is to format scss files with sass-convert, but you can use sass-convert for your own purpose of course.

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-sass-convert --save-dev

One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-sass-convert');

The "sass-convert" task

This plugin requires sass-convert installed. If you have alredy installed Sass, you might have already installed sass-convert also.

Overview

In your project's Gruntfile, add a section named sass-convert to the data object passed into grunt.initConfig().

grunt.initConfig({
  'sass-convert': {
    options: {
      // command line options here
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

sass-convert --help to see the other options

options.from

Type: String Default value: 'scss'

The format to convert to. Can be scss or sass.

options.to

Type: String Default value: 'scss'

The format to convert from. Can be css, scss, sass.

options.indent

Type: Number Default value: 2

How many spaces to use for each level of indentation.

Usage Examples

formatted scss files

formatted scss files ('''caution: override your scss files''')

grunt.initConfig({
  'sass-convert': {
    files: [{
      src: ['foo/**/*.scss']
    },{
      src: ['bar/**/*.scss']    
    }]
  }
})

convert files with cwd option

you can use cwd option in files like that.

grunt.initConfig({
  sass-convert: {
    files: {
      cwd: ['path/to'],
      src: ['*.scss'],
      dest: 'sass/'
    }
  }
})

In the above configuration, the task detects scss files in path/to, and then added converted files to the 'sass' directory (when the directories are not found, automatically make them)

prepend file prefix for the converted files

And supports file prefix

grunt.initConfig({
  sass-convert: {
    options: {
      from: 'css',
      to: 'scss'
    },
    files: {
      cwd: ['path/to'],
      src: ['*.css'],
      filePrefix: '_',
      dest: 'sass/partials'
    }
  }
})

In the above configuration, the task detects scss files in path/to, and then adds converted files with the prepended prefix '_' to the 'sass' directory (when the directories are not found, automatically make them)

path/to/foo.css
path/to/bar.css

converted

sass/partials/_foo.scss
sass/partials/_bar.scss

Custom Options

if you want to save formatted files to the another location, use dest property.

grunt.initConfig({
  'sass-convert': {
    options: {
      indent: 4
    },
    files: {
      src: ['path/**/*.scss']
      dest: 'dest'
    },
  },
})

Release History

  • 0.2.0 enable to set file prefix / support multiple file targets
0.3.0

10 years ago

0.2.0

11 years ago

0.1.4

12 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago