Skip to content

Instantly share code, notes, and snippets.

@adamkudrna
Last active August 29, 2015 14:10
Show Gist options
  • Save adamkudrna/1b3596c7092c78eb01e5 to your computer and use it in GitHub Desktop.
Save adamkudrna/1b3596c7092c78eb01e5 to your computer and use it in GitHub Desktop.
Starter Gruntfile
'use strict';
module.exports = function (grunt) {
var options = {
pkg: grunt.file.readJSON('package.json'),
paths: {
src: 'assets',
dist: 'www',
bower: 'bower_components',
composer: 'vendor'
},
devUrl: 'project.local'
};
require('time-grunt')(grunt);
require('load-grunt-config')(grunt, { config: options });
// See the `grunt/` directory for individual task configurations.
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment