Skip to content

Instantly share code, notes, and snippets.

@digilord
Created February 21, 2014 18:26
Show Gist options
  • Save digilord/9140160 to your computer and use it in GitHub Desktop.
Save digilord/9140160 to your computer and use it in GitHub Desktop.
Package.describe({
summary: "A user managment tab for the CM project"
});
Package.on_use(function (api, where) {
api.use(['templating', 'coffeescript', 'less', 'Mesosphere', 'paginate', 'bootstrap', 'iron-router'], ['client','server']);
api.add_files([
'collections/users_collection.coffee',
'client/users-mesosphere.coffee',
], ['client','server']);
api.add_files([
'client/users.html',
'client/user_pager.coffee',
'client/users.coffee',
'client/user-management-styles.less'
],'client');
api.add_files(['server/users_publication.coffee'],'server');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment