Gruntfile.js 481 B

1234567891011121314151617181920212223
  1. module.exports = function(grunt) {
  2. grunt.loadTasks('../vendor/amber/grunt/tasks/');
  3. grunt.registerTask('default', ['amberc:presentation']);
  4. grunt.initConfig({
  5. pkg: grunt.file.readJSON('../package.json'),
  6. amberc: {
  7. options: {
  8. amber_dir: '../vendor/amber',
  9. closure_jar: ''
  10. },
  11. presentation: {
  12. src: ['st/Presentation.st'],
  13. libraries: ['Canvas'],
  14. output_dir: 'js',
  15. deploy: true
  16. }
  17. }
  18. });
  19. }