aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/bundle.js
blob: 943e08ba4af92d001b5f40de4876bed875a81f2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'use strict';

var path = require('path');

var Promise = require('bluebird');

var fs = Promise.promisifyAll(require('fs'));

var spawn = require('cross-spawn');

var debug = require('debug')('purs-loader');

var dargs = require('./dargs');

module.exports = function bundle(options, bundleModules) {
  var stdout = [];

  var stderr = [];

  var bundleCommand = options.pscBundle || 'purs';

  var bundleArgs = (options.pscBundle ? [] : ['bundle']).concat(dargs(Object.assign({
    _: [path.join(options.output, '*', '*.js')],
    output: options.bundleOutput,
    namespace: options.bundleNamespace
  }, options.pscBundleArgs)));

  bundleModules.forEach(function (name) {
    return bundleArgs.push('--module', name);
  });

  debug('bundle: %s %O', bundleCommand, bundleArgs);

  return new Promise(function (resolve, reject) {
    debug('bundling PureScript...');

    var compilation = spawn(bundleCommand, bundleArgs);

    compilation.stdout.on('data', function (data) {
      return stdout.push(data.toString());
    });

    compilation.stderr.on('data', function (data) {
      return stderr.push(data.toString());
    });

    compilation.on('close', function (code) {
      debug('finished bundling PureScript.');

      if (code !== 0) {
        var errorMessage = stderr.join('');

        if (errorMessage.length) {
          psModule.emitError(errorMessage);
        }

        reject(new Error('bundling failed'));
      } else {
        resolve(fs.appendFileAsync(options.bundleOutput, 'module.exports = ' + options.bundleNamespace));
      }
    });
  });
};