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

Commit 8de1b46

Browse files
danielsogldanbucholtz
authored andcommitted
chore(documentation): rename github org stuff from driftyco to ionic-team(#1019)
* refactor(): rename driftyco * Update package.json
1 parent 0154791 commit 8de1b46

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![npm version](https://img.shields.io/npm/v/@ionic/app-scripts.svg)](https://www.npmjs.com/package/@ionic/app-scripts)
2-
[![Circle CI](https://circleci.com/gh/driftyco/ionic-app-scripts.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/driftyco/ionic-app-scripts)
2+
[![Circle CI](https://circleci.com/gh/ionic-team/ionic-app-scripts.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/ionic-team/ionic-app-scripts)
33
# Ionic App Scripts
44

5-
Helper scripts to get [Ionic apps](http://ionicframework.com/) up and running quickly (minus the config overload).
5+
Helper scripts to get [Ionic apps](https://ionicframework.com/) up and running quickly (minus the config overload).
66

77
To get the latest `@ionic/app-scripts`, please run:
88

@@ -32,7 +32,7 @@ Out of the box, Ionic starters have been preconfigured with great defaults for b
3232

3333
Just the bullet list above is a little overwhelming, and each task requires quite a bit of development time just to get started. Ionic App Script's intention is to make it easier to complete common tasks so developers can focus on building their app, rather than building build scripts.
3434

35-
Note that the [Ionic Framework's](https://github.com/driftyco/ionic) source is made up of modules and can be packaged by any bundler or build process. However, this project's goal is provide simple scripts to make building Ionic apps easier, while also allowing developers to further configure their build process.
35+
Note that the [Ionic Framework's](https://github.com/ionic-team/ionic) source is made up of modules and can be packaged by any bundler or build process. However, this project's goal is provide simple scripts to make building Ionic apps easier, while also allowing developers to further configure their build process.
3636

3737

3838
### npm Scripts
@@ -57,7 +57,7 @@ npm run build
5757

5858
In many cases, the defaults which Ionic provides cover most of the scenarios required by developers; however, Ionic App Scripts does provide multiple ways to configure and override the defaults for each of the various tasks. Note that Ionic will always apply its defaults for any property that was not provided by custom configuration.
5959

60-
[Default Config Files](https://github.com/driftyco/ionic-app-scripts/tree/master/config)
60+
[Default Config Files](https://github.com/ionic-team/ionic-app-scripts/tree/master/config)
6161

6262
### package.json Config
6363

@@ -191,7 +191,7 @@ These environment variables are automatically set to [Node's `process.env`](http
191191

192192
The `process.env.IONIC_ENV` environment variable can be used to test whether it is a `prod` or `dev` build, which automatically gets set by any command. By default the `build` and `serve` tasks produce `dev` builds (a build that does not include Ahead of Time (AoT) compilation or minification). To force a `prod` build you should use the `--prod` command line flag.
193193

194-
Please take a look at the bottom of the [default Rollup config file](https://github.com/driftyco/ionic-app-scripts/blob/master/config/rollup.config.js) to see how the `IONIC_ENV` environment variable is being used to conditionally change config values for production builds.
194+
Please take a look at the bottom of the [default Rollup config file](https://github.com/ionic-team/ionic-app-scripts/blob/master/config/rollup.config.js) to see how the `IONIC_ENV` environment variable is being used to conditionally change config values for production builds.
195195

196196

197197
## All Available Tasks
@@ -235,20 +235,20 @@ npm run lint --bailOnLintError true
235235

236236
## The Stack
237237

238-
- [Ionic Framework](http://ionicframework.com/)
238+
- [Ionic Framework](https://ionicframework.com/)
239239
- [TypeScript Compiler](https://www.typescriptlang.org/)
240240
- [Angular Compiler (NGC)](https://github.com/angular/angular/tree/master/modules/%40angular/compiler-cli)
241-
- [Rollup Module Bundler](http://rollupjs.org/)
241+
- [Rollup Module Bundler](https://rollupjs.org/)
242242
- Ionic Component Sass
243243
- [Node Sass](https://www.npmjs.com/package/node-sass)
244244
- [Autoprefixer](https://github.com/postcss/autoprefixer)
245-
- [UglifyJS](http://lisperator.net/uglifyjs/)
245+
- [UglifyJS](https://lisperator.net/uglifyjs/)
246246
- [CleanCss](https://github.com/jakubpawlowicz/clean-css)
247-
- [TSLint](http://palantir.github.io/tslint/)
247+
- [TSLint](https://palantir.github.io/tslint/)
248248

249249
## Contributing
250250

251-
We welcome any PRs, issues, and feedback! Please be respectful and follow the [Code of Conduct](https://github.com/driftyco/ionic/blob/master/CODE_OF_CONDUCT.md).
251+
We welcome any PRs, issues, and feedback! Please be respectful and follow the [Code of Conduct](https://github.com/ionic-team/ionic/blob/master/CODE_OF_CONDUCT.md).
252252

253253
### Publish a release
254254

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "@ionic/app-scripts",
33
"version": "1.3.7",
44
"description": "Scripts for Ionic Projects",
5-
"homepage": "http://ionicframework.com/",
6-
"author": "Ionic Team <hi@ionic.io> (http://ionic.io)",
5+
"homepage": "https://ionicframework.com/",
6+
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
77
"license": "MIT",
88
"files": [
99
"bin/",
@@ -112,10 +112,10 @@
112112
},
113113
"repository": {
114114
"type": "git",
115-
"url": "git+https://github.com/driftyco/ionic-app-scripts.git"
115+
"url": "git+https://github.com/ionic-team/ionic-app-scripts.git"
116116
},
117117
"bugs": {
118-
"url": "https://github.com/driftyco/ionic-app-scripts/issues"
118+
"url": "https://github.com/ionic-team/ionic-app-scripts/issues"
119119
},
120120
"config": {
121121
"commitizen": {

0 commit comments

Comments
 (0)