diff --git a/README.md b/README.md index 99d62f4..8a0cefc 100644 --- a/README.md +++ b/README.md @@ -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/) \ No newline at end of file +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. \ No newline at end of file diff --git a/package.js b/package.js index febf0b9..fed24a7 100644 --- a/package.js +++ b/package.js @@ -1,12 +1,12 @@ 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", @@ -14,11 +14,11 @@ Package.on_use(function(api, where) { ], "client"); api.use([ - "splendido:accounts-templates-core", + "useraccounts:core", ], ["client", "server"]); api.imply([ - "splendido:accounts-templates-core@0.11.0", + "useraccounts:core@0.11.0", ], ["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-core@0.11.0", + "useraccounts:unstyled", + "useraccounts:core@0.11.0", ]); api.use([ @@ -70,4 +70,4 @@ Package.on_test(function(api) { api.add_files([ "tests/tests.js" ], ["client", "server"]); -}); \ No newline at end of file +});