123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- module.exports = function (grunt) {
- var amberc = require('../lib/amberc');
-
- grunt.registerMultiTask('amberc', 'Compile Smalltalk files with the amberc compiler', function () {
-
- var done = this.async();
- var options = this.options({
- amber_dir: undefined,
- configFile: null,
- paths: {},
- verbose: grunt.option('verbose') || false
- });
- this.data.verbose = options.verbose;
- this.data.configFile = options.configFile;
- this.data.paths = options.paths;
-
- this.requiresConfig('amberc.options.amber_dir');
-
- if (this.filesSrc.length === 0) {
- grunt.fail.fatal('No source files to compile or link.');
- }
-
- var compiler = new amberc.Compiler(grunt.config('amberc.options.amber_dir'));
-
- var configuration = generateCompilerConfiguration(this.data, this.filesSrc);
-
- var self = this;
- compiler.main(configuration, function () {
-
- done();
- });
- });
- function generateCompilerConfiguration(data, sourceFiles) {
- var configuration = amberc.createDefaultConfiguration();
- if (data.libraries != null) {
- configuration.load = data.libraries;
- }
- if (data.configFile != null) {
- configuration.configFile = data.configFile;
- }
- if (data.paths != null) {
- configuration.paths = data.paths;
- }
- if (sourceFiles != null) {
- configuration.stFiles = sourceFiles;
- }
- if (data.amd_namespace != null) {
- configuration.amdNamespace = data.amd_namespace;
- }
- if (data.output_dir != null) {
- configuration.outputDir = data.output_dir;
- }
- if (data.jsGlobals != null) {
- configuration.jsGlobals.push.apply(configuration.jsGlobals, data.jsGlobals);
- }
- if (data.verbose != null) {
- configuration.verbose = data.verbose;
- }
- return configuration;
- }
- };
|