mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
32 lines
992 B
JavaScript
32 lines
992 B
JavaScript
Package.describe({
|
|
name: 'meteor-base',
|
|
version: '1.0.0',
|
|
// Brief, one-line summary of the package.
|
|
summary: 'Packages that every Meteor app needs',
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// To avoid submitting documentation, set this field to null.
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.imply([
|
|
// Super basic stuff about where your code is running and async utilities
|
|
'meteor',
|
|
|
|
// This package enables making client-server connections; currently Meteor
|
|
// only supports building client/server web applications so this is not
|
|
// removable
|
|
'webapp',
|
|
|
|
// Most Meteor core packages depend on Underscore right now
|
|
'underscore',
|
|
|
|
// The protocol and client/server libraries that Meteor uses to send data
|
|
'ddp',
|
|
'livedata', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0.
|
|
|
|
// Push code changes to the client and automatically reload the page
|
|
'hot-code-push'
|
|
]);
|
|
});
|