mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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.
16 lines
304 B
JavaScript
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']);
|
|
});
|