Skip to content

Instantly share code, notes, and snippets.

@digilord
Created August 28, 2014 01:16
Show Gist options
  • Save digilord/db8ce1be8da4376b7312 to your computer and use it in GitHub Desktop.
Save digilord/db8ce1be8da4376b7312 to your computer and use it in GitHub Desktop.
Package.describe({
summary: "Arrestreport Management for the !nservice App",
version: "0.1",
name: "ch-arrestreport"
});
Package.on_use(function (api) {
api.versionsFrom("[email protected]");
both = ['client', 'server'];
api.use('coffeescript');
api.use('mongo-livedata');
api.use('templating');
api.use('ui');
api.use('reactive-dict');
api.use('less');
api.use('sugar');
api.use("sacha:[email protected]");
api.use("natestrauser:[email protected]");
api.use('mrt:[email protected]')
api.use("copleykj:[email protected]");
api.use('iron:[email protected]');
api.use("digilord:[email protected]");
api.use([
'ch-person',
'ch-location',
'ch-property',
'ch-narrative',
'ch-organization',
'ch-vehicle',
'ch-miranda',
'ch-media',
'ch-signature'
]);
api.add_files('collections/arrestreport.coffee', both)
api.add_files('collections/arrestreportofinterest.coffee', both)
api.add_files('collections/mesosphere_fields.coffee', both)
api.add_files('lib/router.coffee', both)
api.add_files('server/publications/arrestreport.coffee', 'server')
api.add_files('server/publications/arrestreportofinterest.coffee', 'server')
api.add_files('client/views/arrestreport.html', 'client')
api.add_files('client/views/arrestreport.coffee', 'client')
api.add_files('client/views/arrestreport.less', 'client')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment