Explorar el Código

twitterwall: add Gruntfile.js

Manfred Kroehnert hace 11 años
padre
commit
9aa493f138
Se han modificado 1 ficheros con 21 adiciones y 0 borrados
  1. 21 0
      twitterwall/Gruntfile.js

+ 21 - 0
twitterwall/Gruntfile.js

@@ -0,0 +1,21 @@
+module.exports = function(grunt) {
+  grunt.loadTasks('../vendor/amber/grunt/tasks/');
+
+  grunt.registerTask('default', ['amberc:twitterwall']);
+
+  grunt.initConfig({
+    pkg: grunt.file.readJSON('../package.json'),
+
+    amberc: {  
+      _config: {
+        amber_dir: '../vendor/amber',
+        closure_jar: ''
+      },
+      twitterwall: {
+        src: ['st/TwitterWall.st'],
+        output_dir: 'js'
+      }
+    }
+  });
+
+}