mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
367 B
JavaScript
15 lines
367 B
JavaScript
Package.describe({
|
|
summary: "Makes the application crawlable to web spiders"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('webapp', 'server');
|
|
api.use(['templating'], 'client');
|
|
api.use(['underscore'], ['client', 'server']);
|
|
|
|
api.export('Spiderable', 'server');
|
|
|
|
api.add_files('spiderable.html', 'client');
|
|
api.add_files('spiderable.js', 'server');
|
|
});
|