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

Commit

Permalink
driftyco -> ionic-team
Browse files Browse the repository at this point in the history
  • Loading branch information
perrygovier committed May 30, 2017
1 parent 7eba583 commit 1b7414f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions README_OLD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down Expand Up @@ -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 [email protected]:driftyco/ionic-site ./../ionic-site`
- `git clone [email protected]: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
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"repo": "driftyco/ionic",
"repo": "ionic-team/ionic",
"development": {},
"version": "1.3.3",
"styles": [
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 + '"',
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// 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';

Package.describe({
name: packageName,
version: version,
summary: 'Ionic Framework official Meteor package',
git: '[email protected]:driftyco/ionic.git'
git: '[email protected]:ionic-team/ionic.git'
});

Package.onUse(function(api) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/app-base/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion scripts/clone/clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function run {
git config --global user.email "[email protected]"
git config --global user.name "Ionitron"

git clone [email protected]:driftyco/$REPOSITORY.git $DIRECTORY $ARGS
git clone [email protected]:ionic-team/$REPOSITORY.git $DIRECTORY $ARGS
cd $DIRECTORY
git fetch origin --tags
cd ../
Expand Down
2 changes: 1 addition & 1 deletion scripts/site/docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b7414f

Please sign in to comment.