Browse Source

Grunt: Compiler is required for the Repl to work

Manfred Kroehnert 11 years ago
parent
commit
f552a7d60a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Gruntfile.js

+ 4 - 0
Gruntfile.js

@@ -93,6 +93,10 @@ module.exports = function(grunt) {
       amber_cli: {
         output_dir: 'cli/js',
         src: ['cli/st/AmberCli.st'],
+        libraries: [
+            'Compiler-Exceptions', 'Compiler-Core', 'Compiler-AST',
+            'Compiler-IR', 'Compiler-Inlining', 'Compiler-Semantic', 'Compiler-Interpreter', 'parser'
+        ],
         main_class: 'AmberCli',
         output_name: 'amber-cli'
       }