mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
369 B
JavaScript
15 lines
369 B
JavaScript
Package.describe({
|
|
summary: "Utility code for constructing URLs",
|
|
version: "1.0.3"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.export('URL');
|
|
api.use('underscore', ['client', 'server']);
|
|
api.addFiles('url_common.js', ['client', 'server']);
|
|
api.addFiles('url_client.js', 'client');
|
|
api.addFiles('url_server.js', 'server');
|
|
});
|
|
|
|
// tests are in the http package
|