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