Skip to content

Commit

Permalink
Getting rid of redundant stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Nov 27, 2016
1 parent 9bba98d commit 70cdef2
Showing 12 changed files with 7 additions and 93 deletions.
17 changes: 6 additions & 11 deletions angular-cli.json
Original file line number Diff line number Diff line change
@@ -7,19 +7,14 @@
{
"root": "src",
"outDir": "dist",
"assets": [
"assets",
"favicon.ico"
],
"assets": [],
"index": "index.html",
"main": "main.ts",
"test": "test.ts",
"tsconfig": "tsconfig.json",
"prefix": "app",
"mobile": false,
"styles": [
"styles.css"
],
"styles": [],
"scripts": [],
"environments": {
"source": "environments/environment.ts",
@@ -49,11 +44,11 @@
},
"spec": {
"class": false,
"component": true,
"directive": true,
"module": false,
"component": false,
"directive": false,
"module": true,
"pipe": true,
"service": true
"service": false
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-pipes",
"version": "0.4.12",
"version": "0.4.13",
"author": "Dan Revah",
"description": "Useful angular2 pipes",
"license": "MIT",
Empty file removed src/app/demo/app.component.css
Empty file.
3 changes: 0 additions & 3 deletions src/app/demo/app.component.html

This file was deleted.

33 changes: 0 additions & 33 deletions src/app/demo/app.component.spec.ts

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/demo/app.component.ts

This file was deleted.

20 changes: 0 additions & 20 deletions src/app/demo/app.module.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/app/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export * from './pipes.module';
export * from './demo/app.component';
export * from './demo/app.module';
Binary file removed src/favicon.ico
Binary file not shown.
10 changes: 0 additions & 10 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,2 @@
import './polyfills.ts';

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { environment } from './environments/environment';
import { AppModule } from './app/';

if (environment.production) {
enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule);
1 change: 0 additions & 1 deletion src/styles.css

This file was deleted.

2 changes: 0 additions & 2 deletions src/typings.d.ts

This file was deleted.

0 comments on commit 70cdef2

Please sign in to comment.