Created
February 21, 2014 18:26
-
-
Save digilord/9140160 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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