Skip to content

Commit

Permalink
various changes in names and link
Browse files Browse the repository at this point in the history
  • Loading branch information
splendido committed Oct 29, 2014
1 parent 7b8d6b2 commit d2bf308
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[![Build Status](https://travis-ci.org/splendido/accounts-templates-foundation.svg?branch=master)](https://travis-ci.org/splendido/accounts-templates-foundation)
[![Build Status](https://travis-ci.org/useraccounts/foundation.svg?branch=master)](https://travis-ci.org/useraccounts/foundation)
accounts-templates-foundation
=============================

Meteor sign up and sign in templates styled for Zurb Foundation

This package depends on [accounts-templates-core](https://github.com/splendido/accounts-templates-core.git)
This package depends on [accounts-templates-core](https://github.com/useraccounts/core.git)

Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-foundation.meteor.com) or at the full [documentation](https://github.com/splendido/accounts-templates-core).
Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-foundation.meteor.com) or at the full [documentation](https://github.com/useraccounts/core).


## Warning!

Adding this package with `mrt add accounts-templates-foundation` does not add any other packages providing Zurb Foundation. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN!
Adding this package with `mrt add useraccounts:foundation` does not add any other packages providing Zurb Foundation. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN!

At the moment it is up to date with Foundation 5.3.3.

Expand All @@ -20,6 +20,4 @@ At the moment it is up to date with Foundation 5.3.3.

Anyone is welcome to contribute. Fork, make your changes, and then submit a pull request.

Thanks to all those who have contributed code changes to [this package](https://github.com/splendido/accounts-templates-foundation/graphs/contributors) as well as to the [core package](https://github.com/splendido/accounts-templates-core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas.

[![Support via Gittip](https://rawgithub.com/twolfson/gittip-badge/0.2.0/dist/gittip.png)](https://www.gittip.com/splendido/)
Thanks to all those who have contributed code changes to [this package](https://github.com/useraccounts/foundation/graphs/contributors) as well as to the [core package](https://github.com/useraccounts/core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas.
16 changes: 8 additions & 8 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Package.describe({
summary: "Accounts Templates styled for Zurb Foundation.",
version: "0.11.0",
name: "splendido:accounts-templates-foundation",
git: "https://github.com/splendido/accounts-templates-foundation.git",
name: "useraccounts:foundation",
git: "https://github.com/meteor-useraccounts/foundation.git",
});

Package.on_use(function(api, where) {
api.versionsFrom("METEOR@0.9.2.2");
api.versionsFrom("METEOR@1.0");

api.use([
"less",
"templating",
], "client");

api.use([
"splendido:accounts-templates-core",
"useraccounts:core",
], ["client", "server"]);

api.imply([
"splendido:accounts-templates-[email protected]",
"useraccounts:[email protected]",
], ["client", "server"]);

api.add_files([
Expand Down Expand Up @@ -57,8 +57,8 @@ Package.on_use(function(api, where) {

Package.on_test(function(api) {
api.use([
"splendido:accounts-templates-foundation",
"splendido:accounts-templates-[email protected]",
"useraccounts:foundation",
"useraccounts:[email protected]",
]);

api.use([
Expand All @@ -70,4 +70,4 @@ Package.on_test(function(api) {
api.add_files([
"tests/tests.js"
], ["client", "server"]);
});
});

0 comments on commit d2bf308

Please sign in to comment.