-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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([ | ||
|
@@ -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([ | ||
|
@@ -70,4 +70,4 @@ Package.on_test(function(api) { | |
api.add_files([ | ||
"tests/tests.js" | ||
], ["client", "server"]); | ||
}); | ||
}); |