Files
meteor/packages/dev-bundle/plugins/shell.js
Emily Stark 0866b15814 Add star-translate and dev-bundle packages
dev-bundle exposes the shell script that downloads the dev bundle. We need this
in a package because both star-translate and tools/bundler.js need access to it.
2013-05-22 11:35:33 -07:00

20 lines
619 B
JavaScript

var path = Npm.require('path');
var handler = function (compileStep) {
var source = compileStep.read().toString('utf8');
var source_obj = { source: source };
var filename = path.basename(compileStep.inputPath);
var target = compileStep.inputPath + '.js';
var code = '//@export shellScripts\nif (! shellScripts) shellScripts = {};';
code = code + '\nshellScripts["' + filename + '"] =' +
JSON.stringify(source_obj) + ';';
compileStep.addJavaScript({
path: target,
data: code,
sourcePath: compileStep.inputPath,
lineForLine: false
});
};
Plugin.registerSourceHandler('in', handler);