Skip to content

Commit

Permalink
Package configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
enricofoschi committed Jun 16, 2015
1 parent 3b93ec8 commit 2acd32c
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'enricofoschi:crater.js',
version: '0.0.8',
version: '0.0.9',
// Brief, one-line summary of the package.
summary: 'Meteor Micro Framework For Highly Effective Projects',
// URL to the Git repository containing the source code for this package.
Expand Down Expand Up @@ -29,7 +29,8 @@ Package.onUse(function(api) {
'[email protected]',
'alanning:[email protected]',
'aldeed:[email protected]',
'[email protected]'
'[email protected]',
'meteorhacks:[email protected]'
]);

api.use([
Expand Down Expand Up @@ -68,7 +69,7 @@ Package.onUse(function(api) {
]);

api.addFiles([
'client/scripts/helpers/auth.coffee',
'client/scripts/helpers/auth.coffee',
'client/scripts/helpers/forms.coffee',
'client/scripts/helpers/loader.coffee',
'client/scripts/helpers/meteor.coffee',
Expand All @@ -81,14 +82,21 @@ Package.onUse(function(api) {
'client/scripts/lib/bootbox.min.js',
'client/scripts/loaders/adaptive-label.js',
'client/scripts/start.coffee',
'client/styles/lib/datatables.fixes.css',
'client/styles/lib/sweetalert.css'
'client/styles/lib/datatables.fixes.css',
'client/styles/lib/sweetalert.css',
], 'client');

api.addFiles([
'server/api/_base/_base.coffee',
'server/api/_base/basic_auth.coffee',
'server/api/_base/oauth1.coffee',
'server/api/_base/oauth2.coffee',
'server/api/Google/_base.coffee',
'server/api/Google/calendar.coffee',
'server/api/Xing/_base.coffee',
'server/api/Xing/authentication.coffee',
'server/api/LinkedIn/_base.coffee',
'server/api/LinkedIn/profile.coffee',
'server/fixtures/_base.coffee',
'server/fixtures/user.coffee',
'server/helpers/auth.coffee',
Expand All @@ -97,11 +105,24 @@ Package.onUse(function(api) {
'server/helpers/session.coffee',
'server/helpers/time.coffee',
'server/methods/auth/session.coffee',
'server/services/_base.coffee',
'server/methods/thirdparties/xing.coffee',
'server/methods/thirdparties/linkedin.coffee',
'server/services/_base/_base.coffee',
'server/services/core/_base.coffee',
'server/services/core/log.coffee',
'server/services/thirdparties/_base.coffee',
'server/services/thirdparties/xing.coffee',
'server/services/thirdparties/linkedin.coffee',
'server/services/config.coffee',
'server/publications/roles.coffee',
'server/kadira.coffee',
'server/smtp.coffee'
'server/smtp.coffee',
'server/users.coffee'
], 'server');

Npm.depends({
"oauth-signature": "1.3.0"
});
});

Package.onTest(function(api) {
Expand Down

0 comments on commit 2acd32c

Please sign in to comment.