Skip to content

Instantly share code, notes, and snippets.

@Maloric
Last active February 16, 2016 10:56
Show Gist options
  • Save Maloric/e43096def392fc57701e to your computer and use it in GitHub Desktop.
Save Maloric/e43096def392fc57701e to your computer and use it in GitHub Desktop.
Atom Grunt Runner failure when using RequireJS
'use strict';
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.initConfig({});
grunt.registerTask('test', function(target) {
grunt.log.warn('It\'s alive!');
});
};
{
"name": "Test",
"version": "0.0.0",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-requirejs": "^0.4.4"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment