module.exports = function(grunt) { grunt.loadTasks('../vendor/amber/grunt/tasks/'); grunt.registerTask('default', ['amberc:processing']); grunt.initConfig({ pkg: grunt.file.readJSON('../package.json'), amberc: { _config: { amber_dir: '../vendor/amber', closure_jar: '' }, processing: { src: ['st/Processing-Examples.st'], output_dir: 'js' } } }); }