Skip to content

Commit bbe3705

Browse files
committed
various changes in names and link
1 parent 455740b commit bbe3705

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[![Build Status](https://travis-ci.org/splendido/accounts-templates-bootstrap.svg?branch=master)](https://travis-ci.org/splendido/accounts-templates-bootstrap)
1+
[![Build Status](https://travis-ci.org/useraccounts/bootstrap.svg?branch=master)](https://travis-ci.org/useraccounts/bootstrap)
22
accounts-templates-bootstrap
33
============================
44

55
Meteor sign up and sign in templates (and much more!) styled for twitter Bootstrap
66

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

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

1111

1212
## Warning!
1313

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

1616
At the moment it is up to date with Bootstrap 3.2.0.
1717

@@ -20,6 +20,4 @@ At the moment it is up to date with Bootstrap 3.2.0.
2020

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

23-
Thanks to all those who have contributed code changes to [this package](https://github.com/splendido/accounts-templates-bootstrap/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.
24-
25-
[![Support via Gittip](https://rawgithub.com/twolfson/gittip-badge/0.2.0/dist/gittip.png)](https://www.gittip.com/splendido/)
23+
Thanks to all those who have contributed code changes to [this package](https://github.com/useraccounts/bootstrap/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.

package.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
Package.describe({
22
summary: "Accounts Templates styled for Twitter Bootstrap.",
33
version: "0.11.0",
4-
name: "splendido:accounts-templates-bootstrap",
5-
git: "https://github.com/splendido/accounts-templates-bootstrap.git",
4+
name: "useraccounts:bootstrap",
5+
git: "https://github.com/meteor-useraccounts/bootstrap.git",
66
});
77

88
Package.on_use(function(api, where) {
9-
api.versionsFrom("METEOR@0.9.2.2");
9+
api.versionsFrom("METEOR@1.0");
1010

1111
api.use([
1212
"less",
1313
"templating",
1414
], "client");
1515

1616
api.use([
17-
"splendido:accounts-templates-core",
17+
"useraccounts:core",
1818
], ["client", "server"]);
1919

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

2424
api.add_files([
@@ -57,8 +57,8 @@ Package.on_use(function(api, where) {
5757

5858
Package.on_test(function(api) {
5959
api.use([
60-
"splendido:accounts-templates-bootstrap",
61-
"splendido:accounts-templates-[email protected]",
60+
"useraccounts:bootstrap",
61+
"useraccounts:[email protected]",
6262
]);
6363

6464
api.use([
@@ -70,4 +70,4 @@ Package.on_test(function(api) {
7070
api.add_files([
7171
"tests/tests.js"
7272
], ["client", "server"]);
73-
});
73+
});

0 commit comments

Comments
 (0)