Files
meteor/packages/dev-bundle/package.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

16 lines
304 B
JavaScript

Package.describe({
summary: "A shell script for downloading the Meteor dev bundle"
});
Package._transitional_registerBuildPlugin({
name: 'includeShScript',
use: [],
sources: [
'plugins/shell.js'
]
});
Package.on_use(function (api) {
api.add_files(['dev-bundle.sh.in'], ['server']);
});