Skip to content

Commit

Permalink
refactor: Tipe.io
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickJS committed Nov 20, 2017
1 parent 82d7519 commit 7becc6b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @AngularClass
# tipe.io
# http://editorconfig.org

root = true
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @AngularClass
# tipe.io

# Logs
logs
Expand Down
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

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

2 changes: 1 addition & 1 deletion config/build-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const fs = require('fs');
const helpers = require('./helpers');

const DEFAULT_METADATA = {
title: 'Angular2 Webpack Starter by @gdi2290 from @AngularClass',
title: 'Angular Starter by @gdi2290 from @TipeIO',
baseUrl: '/',
isDevServer: helpers.isWebpackDevServer(),
HMR: helpers.hasProcessFlag('hot'),
Expand Down
2 changes: 1 addition & 1 deletion config/helpers.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author: @AngularClass
* @author: tipe.io
*/
const path = require('path');

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"webpack",
"typescript"
],
"author": "Patrick Stapleton <patrick@angularclass.com>",
"homepage": "https://github.com/AngularClass/angular-starter",
"author": "Patrick Stapleton <patrick@tipe.io>",
"homepage": "https://github.com/gdi2290/angular-starter",
"license": "MIT",
"scripts": {
"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",
Expand Down Expand Up @@ -166,10 +166,10 @@
},
"repository": {
"type": "git",
"url": "https://github.com/AngularClass/angular-starter.git"
"url": "https://github.com/gdi2290/angular-starter.git"
},
"bugs": {
"url": "https://github.com/AngularClass/angular-starter/issues"
"url": "https://github.com/gdi2290/angular-starter/issues"
},
"engines": {
"node": ">= 4.2.1",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ import { AppState } from './app.service';
<span>Angular Starter by <a [href]="twitter">@gdi2290</a></span>
<div>
<a [href]="url">
<img [src]="angularclassLogo" width="25%">
<img [src]="tipe" width="25%">
</a>
</div>
</footer>
`
})
export class AppComponent implements OnInit {
public angularclassLogo = 'assets/img/tipe.png';
public name = 'Angular Starter';
public tipe = 'assets/img/tipe.png';
public twitter = 'https://twitter.com/gdi2290';
public url = 'https://tipe.io';
public showDevModule: boolean = environment.showDevModule;
Expand Down

0 comments on commit 7becc6b

Please sign in to comment.