gruntjs - Grunt index file not running -
i trying index.html @ root of app (app/index.html) running grunt file inherited. my grunt file follows: module.exports = function(grunt) { // 1. configuration goes here grunt.initconfig({ pkg: grunt.file.readjson('package.json'), sass_directory_import: { your_target: { files: { src: ['css/sass/parts/_all.scss'] }, }, }, connect: { server: { options: { port: 9000, hostname: 'localhost', base: ['./'], keepalive: true, open: { target: 'http://localhost:9000' } } } }, sass: { dist: { options: { loadpath: require('node-bourbon').includepaths, sourcemap: true }, files: { 'css/style.css' : 'css/sass/style.scss', 'css/style-ie.css' : ...