2
0
فهرست منبع

grunt: adapt amberc tasks to use options instead of _config

introduced in main Amber repo in commit
f9d97a35aac3b0a1296984ca44c85eeb97a431a7
Manfred Kroehnert 11 سال پیش
والد
کامیت
30c4324ab2
5فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 1 1
      nodejs/Gruntfile.js
  2. 1 1
      presentation/Gruntfile.js
  3. 1 1
      processing/Gruntfile.js
  4. 1 1
      trysmalltalk/Gruntfile.js
  5. 2 2
      twitterwall/Gruntfile.js

+ 1 - 1
nodejs/Gruntfile.js

@@ -7,7 +7,7 @@ module.exports = function(grunt) {
     pkg: grunt.file.readJSON('../package.json'),
 
     amberc: {
-      _config: {
+      options: {
         amber_dir: '../vendor/amber',
         closure_jar: ''
       },

+ 1 - 1
presentation/Gruntfile.js

@@ -7,7 +7,7 @@ module.exports = function(grunt) {
     pkg: grunt.file.readJSON('../package.json'),
 
     amberc: {  
-      _config: {
+      options: {
         amber_dir: '../vendor/amber',
         closure_jar: ''
       },

+ 1 - 1
processing/Gruntfile.js

@@ -7,7 +7,7 @@ module.exports = function(grunt) {
     pkg: grunt.file.readJSON('../package.json'),
 
     amberc: {  
-      _config: {
+      options: {
         amber_dir: '../vendor/amber',
         closure_jar: ''
       },

+ 1 - 1
trysmalltalk/Gruntfile.js

@@ -7,7 +7,7 @@ module.exports = function(grunt) {
     pkg: grunt.file.readJSON('../package.json'),
 
     amberc: {  
-      _config: {
+      options: {
         amber_dir: '../vendor/amber',
         closure_jar: ''
       },

+ 2 - 2
twitterwall/Gruntfile.js

@@ -7,14 +7,14 @@ module.exports = function(grunt) {
     pkg: grunt.file.readJSON('../package.json'),
 
     amberc: {  
-      _config: {
+      options: {
         amber_dir: '../vendor/amber',
         closure_jar: ''
       },
       twitterwall: {
         src: ['st/TwitterWall.st'],
         output_dir: 'js',
-	libraries:[ 'Canvas']
+        libraries:[ 'Canvas']
       }
     }
   });