Files
meteor/packages/meteor-base/package.js
2024-07-15 13:36:33 -04:00

33 lines
1.0 KiB
JavaScript

Package.describe({
name: 'meteor-base',
version: '1.5.2',
// 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',
// The protocol and client/server libraries that Meteor uses to send data
'ddp',
// This package uses the user agent of each incoming HTTP request to
// decide whether to inject <script> tags into the <head> of the
// response document to polyfill ECMAScript 5 support.
'es5-shim',
// Push code changes to the client and automatically reload the page
'hot-code-push'
]);
});