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 1a476a3 commit 3fdfcc2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
[![Build Status](https://travis-ci.org/splendido/accounts-templates-unstyled.svg?branch=master)](https://travis-ci.org/splendido/accounts-templates-unstyled)
[![Build Status](https://travis-ci.org/useraccounts/unstyled.svg?branch=master)](https://travis-ci.org/useraccounts/unstyled)
splendido:accounts-templates-unstyled
=====================================

Meteor sign up and sign in templates (and much more!) ustyled

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

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


## Warning!

Adding this package with `mrt add accounts-templates-unstyled` does not add any css/less/sass rules but for the colors for social login buttons. This is to let you write your own ones!
Adding this package with `mrt add useraccounts:unstyled` does not add any css/less/sass rules but for the colors for social login buttons. This is to let you write your own ones!

## Writing Custom CSS Rules

Please have a look [here](https://github.com/splendido/accounts-templates-core#css-rules) to discover more about templates structure and find out how to write your own css rules.
Please have a look [here](https://github.com/useraccounts/core#css-rules) to discover more about templates structure and find out how to write your own css rules.

## Contributing

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-unstyled/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/unstyled/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 unstyled.",
version: "0.11.0",
name: "splendido:accounts-templates-unstyled",
git: "https://github.com/splendido/accounts-templates-unstyled.git",
name: "useraccounts:unstyled",
git: "https://github.com/meteor-useraccounts/unstyled.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-unstyled",
"splendido:accounts-templates-[email protected]",
"useraccounts:unstyled",
"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 3fdfcc2

Please sign in to comment.