Browse Source

grunt: fix amberc:amber_compiler target

Importer-Exporter was missing
output_name was not defined
Manfred Kroehnert 11 years ago
parent
commit
4873a0a764
1 changed files with 2 additions and 1 deletions
  1. 2 1
      grunt.js

+ 2 - 1
grunt.js

@@ -40,8 +40,9 @@ module.exports = function(grunt) {
       amber_compiler: {
         working_dir: 'st',
         target_dir : 'js',
-        src: ['Compiler.st', 'Compiler-Exceptions.st', 'Compiler-Core.st', 'Compiler-AST.st',
+        src: ['Importer-Exporter.st', 'Compiler.st', 'Compiler-Exceptions.st', 'Compiler-Core.st', 'Compiler-AST.st',
               'Compiler-IR.st', 'Compiler-Inlining.st', 'Compiler-Semantic.st'],
+        output_name: 'Compiler',
         deploy: true
       },
       amber_canvas: {