Skip to content

Commit 7becc6b

Browse files
committed
refactor: Tipe.io
1 parent 82d7519 commit 7becc6b

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @AngularClass
1+
# tipe.io
22
# http://editorconfig.org
33

44
root = true

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @AngularClass
1+
# tipe.io
22

33
# Logs
44
logs

LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2017 AngularClass LLC
3+
Copyright (c) 2015-2017 PatrickJS, Tipe Inc
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

config/build-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const fs = require('fs');
44
const helpers = require('./helpers');
55

66
const DEFAULT_METADATA = {
7-
title: 'Angular2 Webpack Starter by @gdi2290 from @AngularClass',
7+
title: 'Angular Starter by @gdi2290 from @TipeIO',
88
baseUrl: '/',
99
isDevServer: helpers.isWebpackDevServer(),
1010
HMR: helpers.hasProcessFlag('hot'),

config/helpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @author: @AngularClass
2+
* @author: tipe.io
33
*/
44
const path = require('path');
55

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"webpack",
1111
"typescript"
1212
],
13-
"author": "Patrick Stapleton <patrick@angularclass.com>",
14-
"homepage": "https://github.com/AngularClass/angular-starter",
13+
"author": "Patrick Stapleton <patrick@tipe.io>",
14+
"homepage": "https://github.com/gdi2290/angular-starter",
1515
"license": "MIT",
1616
"scripts": {
1717
"build:aot:prod": "npm run clean:dist && npm run clean:aot && cross-env BUILD_AOT=1 npm run webpack -- --config config/webpack.prod.js --progress --profile --bail",
@@ -166,10 +166,10 @@
166166
},
167167
"repository": {
168168
"type": "git",
169-
"url": "https://github.com/AngularClass/angular-starter.git"
169+
"url": "https://github.com/gdi2290/angular-starter.git"
170170
},
171171
"bugs": {
172-
"url": "https://github.com/AngularClass/angular-starter/issues"
172+
"url": "https://github.com/gdi2290/angular-starter/issues"
173173
},
174174
"engines": {
175175
"node": ">= 4.2.1",

src/app/app.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ import { AppState } from './app.service';
5353
<span>Angular Starter by <a [href]="twitter">@gdi2290</a></span>
5454
<div>
5555
<a [href]="url">
56-
<img [src]="angularclassLogo" width="25%">
56+
<img [src]="tipe" width="25%">
5757
</a>
5858
</div>
5959
</footer>
6060
`
6161
})
6262
export class AppComponent implements OnInit {
63-
public angularclassLogo = 'assets/img/tipe.png';
6463
public name = 'Angular Starter';
64+
public tipe = 'assets/img/tipe.png';
6565
public twitter = 'https://twitter.com/gdi2290';
6666
public url = 'https://tipe.io';
6767
public showDevModule: boolean = environment.showDevModule;

0 commit comments

Comments
 (0)