Skip to content

Commit

Permalink
bautify
Browse files Browse the repository at this point in the history
  • Loading branch information
splendido committed Apr 18, 2015
1 parent 29527f1 commit 91a93b5
Showing 1 changed file with 66 additions and 54 deletions.
120 changes: 66 additions & 54 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,62 +1,74 @@
Package.describe({
summary: "Famo.us wrapper for Accounts Templates.",
version: "1.8.1",
name: "useraccounts:famous-wrapper",
git: "https://github.com/meteor-useraccounts/famous-wrapper.git",
summary: 'Famo.us wrapper for Accounts Templates.',
version: '1.8.1',
name: 'useraccounts:famous-wrapper',
git: 'https://github.com/meteor-useraccounts/famous-wrapper.git',
});

Package.on_use(function(api, where) {
api.versionsFrom("[email protected]");

api.use([
"reactive-dict",
"templating",
], "client");

api.use([
"check",
"underscore",
"useraccounts:core",
"gadicohen:famous-views",
"aldeed:template-extension"
], ["client", "server"]);

api.imply([
"useraccounts:[email protected]",
"gadicohen:[email protected]",
"aldeed:[email protected]",
], ["client", "server"]);

//api.use('mjnetworks:[email protected]', ['client']/*, { weak: true }*/);

api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });
api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });
api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });
api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });
api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });
api.use("useraccounts:[email protected]", ["client", "server"], { weak: true });

api.add_files([
"lib/at_famous_form.html",
"lib/at_famous_form.js",
"lib/at_famous_oauth.html",
"lib/at_famous_oauth.js",
"lib/at_pwd_form_btn.js",
"lib/full_page_at_famous_form.html",
"lib/full_page_at_famous_form.js",
"lib/default_animations.js",
"lib/famous_wrapper.js",
], ["client"]);

api.add_files([
"lib/at_configure_anim.js",
], ["client", "server"]);
api.versionsFrom('[email protected]');

api.use([
'reactive-dict',
'templating',
], 'client');

api.use([
'check',
'underscore',
'useraccounts:core',
'gadicohen:famous-views',
'aldeed:template-extension'
], ['client', 'server']);

api.imply([
'useraccounts:[email protected]',
'gadicohen:[email protected]',
'aldeed:[email protected]',
], ['client', 'server']);

//api.use('mjnetworks:[email protected]', ['client']/*, { weak: true }*/);

api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});
api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});
api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});
api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});
api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});
api.use('useraccounts:[email protected]', ['client', 'server'], {
weak: true
});

api.add_files([
'lib/at_famous_form.html',
'lib/at_famous_form.js',
'lib/at_famous_oauth.html',
'lib/at_famous_oauth.js',
'lib/at_pwd_form_btn.js',
'lib/full_page_at_famous_form.html',
'lib/full_page_at_famous_form.js',
'lib/default_animations.js',
'lib/famous_wrapper.js',
], ['client']);

api.add_files([
'lib/at_configure_anim.js',
], ['client', 'server']);
});

Package.on_test(function(api) {
api.use([
"useraccounts:[email protected]",
]);
api.use(["tinytest", "test-helpers"], ["client", "server"]);
api.add_files("tests/tests.js", ["client", "server"]);
api.use([
'useraccounts:[email protected]',
]);
api.use(['tinytest', 'test-helpers'], ['client', 'server']);
api.add_files('tests/tests.js', ['client', 'server']);
});

0 comments on commit 91a93b5

Please sign in to comment.