From 1b7414fabafc8a87252d9ec30d004bf6ac3fa5a7 Mon Sep 17 00:00:00 2001 From: perry Date: Tue, 30 May 2017 11:00:53 -0500 Subject: [PATCH] driftyco -> ionic-team --- .github/CONTRIBUTING.md | 2 +- README_OLD.md | 6 +++--- component.json | 2 +- gulpfile.js | 2 +- package.js | 4 ++-- scripts/app-base/publish.sh | 2 +- scripts/clone/clone.sh | 2 +- scripts/site/docs.sh | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 3044408f6..5bdf18157 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -29,7 +29,7 @@ Always use two spaces, no tabs. This goes for any HTML, CSS, or Javascript. ### License -By contributing your code to the driftyco/ionic GitHub Repository, you agree to license your contribution under the MIT license. +By contributing your code to the ionic-team/ionic GitHub Repository, you agree to license your contribution under the MIT license. ## Ionic 1.x diff --git a/README_OLD.md b/README_OLD.md index 304b65cbe..3cc0b7198 100644 --- a/README_OLD.md +++ b/README_OLD.md @@ -40,10 +40,10 @@ If you'd rather do everything by hand, you can grab all the files for Ionic belo * The `release` folder of this repository * Ionic CDN: [Latest Release](http://code.ionicframework.com/) * Using bower: `bower install ionic` - * For [Meteor](https://www.meteor.com/) applications: `meteor add driftyco:ionic` + * For [Meteor](https://www.meteor.com/) applications: `meteor add ionic-team:ionic` - Download the **bleeding edge just-from-master release** from: * Ionic CDN: [Nightly Build](http://code.ionicframework.com/#nightly) - * Using bower: `bower install driftyco/ionic-bower#master` + * Using bower: `bower install ionic-team/ionic-bower#master` Once you have a release, use `js/ionic.js`, `js/ionic-angular.js`, and `css/ionic.css`. @@ -84,7 +84,7 @@ Ionic currently supports Android 4.1 and above, iOS 8 and above, and Windows 10. * Documentation is generated into `./../ionic-site`. To test documentation properly, follow these steps: 1. Clone ionic-site into `./../ionic-site` - - `git clone git@github.com:driftyco/ionic-site ./../ionic-site` + - `git clone git@github.com:ionic-team/ionic-site ./../ionic-site` 2. Start jekyll, telling it to rebuild whenever the site changes - `cd ./../ionic-site && jekyll serve -w` 3. Go back to project root and build the docs diff --git a/component.json b/component.json index 7e0a75d4b..481109c41 100644 --- a/component.json +++ b/component.json @@ -1,5 +1,5 @@ { - "repo": "driftyco/ionic", + "repo": "ionic-team/ionic", "development": {}, "version": "1.3.3", "styles": [ diff --git a/gulpfile.js b/gulpfile.js index 4f4edb39f..0cc812114 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -339,7 +339,7 @@ gulp.task('release-github', function(done) { .then(function(log) { var version = 'v' + pkg.version; github.releases.createRelease({ - owner: 'driftyco', + owner: 'ionic-team', repo: 'ionic', tag_name: version, name: version + ' "' + pkg.codename + '"', diff --git a/package.js b/package.js index c9dfae394..665616ee1 100644 --- a/package.js +++ b/package.js @@ -1,5 +1,5 @@ // package metadata file for Meteor.js -var packageName = 'driftyco:ionic'; // https://atmospherejs.com/ionic-team/ionic +var packageName = 'ionic-team:ionic'; // https://atmospherejs.com/ionic-team/ionic var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing. var version = '1.3.3'; @@ -7,7 +7,7 @@ Package.describe({ name: packageName, version: version, summary: 'Ionic Framework official Meteor package', - git: 'git@github.com:driftyco/ionic.git' + git: 'git@github.com:ionic-team/ionic.git' }); Package.onUse(function(api) { diff --git a/scripts/app-base/publish.sh b/scripts/app-base/publish.sh index a8691c13e..d6d4474bf 100755 --- a/scripts/app-base/publish.sh +++ b/scripts/app-base/publish.sh @@ -31,7 +31,7 @@ function run { cp -Rf scss $APPBASE_LIB_DIR echo "-- Updating bower dependency..." - replaceJsonProp "$APPBASE_DIR/bower.json" "ionic" "driftyco\/ionic-bower#$VERSION" + replaceJsonProp "$APPBASE_DIR/bower.json" "ionic" "ionic-team\/ionic-bower#$VERSION" cd $APPBASE_DIR diff --git a/scripts/clone/clone.sh b/scripts/clone/clone.sh index d6debade6..c18a4abb2 100755 --- a/scripts/clone/clone.sh +++ b/scripts/clone/clone.sh @@ -21,7 +21,7 @@ function run { git config --global user.email "hi@ionicframework.com" git config --global user.name "Ionitron" - git clone git@github.com:driftyco/$REPOSITORY.git $DIRECTORY $ARGS + git clone git@github.com:ionic-team/$REPOSITORY.git $DIRECTORY $ARGS cd $DIRECTORY git fetch origin --tags cd ../ diff --git a/scripts/site/docs.sh b/scripts/site/docs.sh index 492c38d6f..d8d76a32b 100755 --- a/scripts/site/docs.sh +++ b/scripts/site/docs.sh @@ -31,7 +31,7 @@ function run { echo "-- No changes detected in docs for $VERSION_NAME; docs not updated." else git add -A - git commit -am "Automated build of native docs driftyco/$CIRCLE_PROJECT_REPONAME@$CIRCLE_SHA1" + git commit -am "Automated build of native docs ionic-team/$CIRCLE_PROJECT_REPONAME@$CIRCLE_SHA1" # in case a different commit was pushed to ionic-site during doc/demo gen, # try to rebase around it before pushing