Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports = function(grunt) {
const sass = require('node-sass');
const sassIncludePaths = [].concat(
require('bourbon-neat').includePaths,
require('include-media').includePath
);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
banner: '/** \n' +
' * Automatically Generated - DO NOT EDIT \n' +
' * <%= pkg.name %> / v<%= pkg.version %> / <%= grunt.template.today("yyyy-mm-dd") %> \n' +
' */ \n\n',
sourcePath: 'src',
distPath: 'dist',
templateDir: 'templates',
assetDir: 'assets',
styleDir: 'styles',
scriptDir: 'scripts',