Skip to content

Instantly share code, notes, and snippets.

@alienlebarge
Created December 30, 2014 13:21
Show Gist options
  • Save alienlebarge/a2b3f38555f122b7864c to your computer and use it in GitHub Desktop.
Save alienlebarge/a2b3f38555f122b7864c to your computer and use it in GitHub Desktop.
Running Gulp with Grunt (This is a joke)
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
shell: {
patternlab: {
command: "gulp"
}
}
});
// Load the plugin that provides the "shell" task.
grunt.loadNpmTasks('grunt-shell');
// Default task(s).
grunt.registerTask('default', ['shell']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment