convert css file to sass file
css2sass is a easy way to convert css file to sass file. For example, it can convert
.container {
display: block;
width: 100px;
height: 100px;
}
to
.container
display: block
width: 100px
height: 100px
var css2sass = require('css2sass')
var path = '/path/to/your/css/file/'
var targetPath = 'path/to/your/target/sass/file'
css2sass(path, targetPath)
the little function convert css file to sass file by regexp, and it can't find grammer error, so you shoule promise the css grammer is legal.