Files
meteor/packages/past/package.js
David Glasser 5e622215ba Change all publicly documented APIs to use camelCase.
For now, the old names still work as well.

This includes:
  - Meteor.isServer/isClient
  - this.isSimulation in methods
  - Context.onInvalidate
  - Meteor.status().retryCount/retryTime

Remove old backwards-compatibility "Sky" alias for "Meteor".

Update all examples in the docs to use camelCase.

Delete unused docs/client/projects.html file.
2012-09-17 14:26:45 -07:00

18 lines
366 B
JavaScript

Package.describe({
summary: "Backwards compatibility.",
internal: true
});
Package.on_use(function (api) {
api.use('deps');
api.add_files('past.js', ['client', 'server']);
});
Package.on_test(function (api) {
api.use('past');
api.use('tinytest');
api.add_files('client_past_test.js', 'client');
api.add_files('server_past_test.js', 'server');
});