Skip to content
This repository was archived by the owner on May 4, 2022. It is now read-only.

Commit 1b7414f

Browse files
committed
driftyco -> ionic-team
1 parent 7eba583 commit 1b7414f

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Always use two spaces, no tabs. This goes for any HTML, CSS, or Javascript.
2929

3030
### License
3131

32-
By contributing your code to the driftyco/ionic GitHub Repository, you agree to license your contribution under the MIT license.
32+
By contributing your code to the ionic-team/ionic GitHub Repository, you agree to license your contribution under the MIT license.
3333

3434
## Ionic 1.x
3535

README_OLD.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ If you'd rather do everything by hand, you can grab all the files for Ionic belo
4040
* The `release` folder of this repository
4141
* Ionic CDN: [Latest Release](http://code.ionicframework.com/)
4242
* Using bower: `bower install ionic`
43-
* For [Meteor](https://www.meteor.com/) applications: `meteor add driftyco:ionic`
43+
* For [Meteor](https://www.meteor.com/) applications: `meteor add ionic-team:ionic`
4444
- Download the **bleeding edge just-from-master release** from:
4545
* Ionic CDN: [Nightly Build](http://code.ionicframework.com/#nightly)
46-
* Using bower: `bower install driftyco/ionic-bower#master`
46+
* Using bower: `bower install ionic-team/ionic-bower#master`
4747

4848
Once you have a release, use `js/ionic.js`, `js/ionic-angular.js`, and `css/ionic.css`.
4949

@@ -84,7 +84,7 @@ Ionic currently supports Android 4.1 and above, iOS 8 and above, and Windows 10.
8484

8585
* Documentation is generated into `./../ionic-site`. To test documentation properly, follow these steps:
8686
1. Clone ionic-site into `./../ionic-site`
87-
- `git clone [email protected]:driftyco/ionic-site ./../ionic-site`
87+
- `git clone [email protected]:ionic-team/ionic-site ./../ionic-site`
8888
2. Start jekyll, telling it to rebuild whenever the site changes
8989
- `cd ./../ionic-site && jekyll serve -w`
9090
3. Go back to project root and build the docs

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"repo": "driftyco/ionic",
2+
"repo": "ionic-team/ionic",
33
"development": {},
44
"version": "1.3.3",
55
"styles": [

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ gulp.task('release-github', function(done) {
339339
.then(function(log) {
340340
var version = 'v' + pkg.version;
341341
github.releases.createRelease({
342-
owner: 'driftyco',
342+
owner: 'ionic-team',
343343
repo: 'ionic',
344344
tag_name: version,
345345
name: version + ' "' + pkg.codename + '"',

package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// package metadata file for Meteor.js
2-
var packageName = 'driftyco:ionic'; // https://atmospherejs.com/ionic-team/ionic
2+
var packageName = 'ionic-team:ionic'; // https://atmospherejs.com/ionic-team/ionic
33
var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing.
44
var version = '1.3.3';
55

66
Package.describe({
77
name: packageName,
88
version: version,
99
summary: 'Ionic Framework official Meteor package',
10-
git: '[email protected]:driftyco/ionic.git'
10+
git: '[email protected]:ionic-team/ionic.git'
1111
});
1212

1313
Package.onUse(function(api) {

scripts/app-base/publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function run {
3131
cp -Rf scss $APPBASE_LIB_DIR
3232

3333
echo "-- Updating bower dependency..."
34-
replaceJsonProp "$APPBASE_DIR/bower.json" "ionic" "driftyco\/ionic-bower#$VERSION"
34+
replaceJsonProp "$APPBASE_DIR/bower.json" "ionic" "ionic-team\/ionic-bower#$VERSION"
3535

3636
cd $APPBASE_DIR
3737

scripts/clone/clone.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function run {
2121
git config --global user.email "[email protected]"
2222
git config --global user.name "Ionitron"
2323

24-
git clone [email protected]:driftyco/$REPOSITORY.git $DIRECTORY $ARGS
24+
git clone [email protected]:ionic-team/$REPOSITORY.git $DIRECTORY $ARGS
2525
cd $DIRECTORY
2626
git fetch origin --tags
2727
cd ../

scripts/site/docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function run {
3131
echo "-- No changes detected in docs for $VERSION_NAME; docs not updated."
3232
else
3333
git add -A
34-
git commit -am "Automated build of native docs driftyco/$CIRCLE_PROJECT_REPONAME@$CIRCLE_SHA1"
34+
git commit -am "Automated build of native docs ionic-team/$CIRCLE_PROJECT_REPONAME@$CIRCLE_SHA1"
3535

3636
# in case a different commit was pushed to ionic-site during doc/demo gen,
3737
# try to rebase around it before pushing

0 commit comments

Comments
 (0)