Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit f143141

Browse files
committed
Updated Packages, Linter Corrected, removed redundant server.ts, updated manifest
1 parent 384ba58 commit f143141

File tree

7 files changed

+830
-407
lines changed

7 files changed

+830
-407
lines changed

angular-cli.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,6 @@
5454
{
5555
"project": "src/tsconfig.app.json",
5656
"exclude": "**/node_modules/**"
57-
},
58-
{
59-
"project": "src/tsconfig.spec.json",
60-
"exclude": "**/node_modules/**"
61-
},
62-
{
63-
"project": "e2e/tsconfig.e2e.json",
64-
"exclude": "**/node_modules/**"
6557
}
6658
],
6759
"test": {

package.json

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -22,36 +22,35 @@
2222
},
2323
"private": true,
2424
"dependencies": {
25-
"@angular/animations": "^5.1.2",
26-
"@angular/common": "^5.1.2",
27-
"@angular/compiler": "^5.1.2",
28-
"@angular/core": "^5.1.2",
29-
"@angular/forms": "^5.1.2",
30-
"@angular/http": "^5.1.2",
31-
"@angular/platform-browser": "^5.1.2",
32-
"@angular/platform-browser-dynamic": "^5.1.2",
33-
"@angular/platform-server": "^5.1.2",
34-
"@angular/router": "^5.1.2",
35-
"@angular/service-worker": "^5.1.2",
25+
"@angular/animations": "^5.2.3",
26+
"@angular/common": "^5.2.3",
27+
"@angular/compiler": "^5.2.3",
28+
"@angular/core": "^5.2.3",
29+
"@angular/forms": "^5.2.3",
30+
"@angular/http": "^5.2.3",
31+
"@angular/platform-browser": "^5.2.3",
32+
"@angular/platform-browser-dynamic": "^5.2.3",
33+
"@angular/platform-server": "^5.2.3",
34+
"@angular/router": "^5.2.3",
35+
"@angular/service-worker": "^5.2.3",
3636
"@nguniversal/express-engine": "^5.0.0-beta.5",
3737
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.5",
3838
"compression": "^1.7.1",
3939
"core-js": "^2.5.3",
40-
"express": "^4.16.2",
4140
"global": "^4.3.2",
42-
"reflect-metadata": "^0.1.10",
41+
"reflect-metadata": "^0.1.12",
4342
"rxjs": "^5.5.6",
44-
"ts-loader": "^3.2.0",
45-
"zone.js": "^0.8.18"
43+
"ts-loader": "^3.4.0",
44+
"zone.js": "^0.8.20"
4645
},
4746
"devDependencies": {
48-
"@angular/cli": "1.6.3",
49-
"@angular/compiler-cli": "^5.1.2",
50-
"@angular/language-service": "^5.1.2",
51-
"@types/node": "~8.5.2",
52-
"codelyzer": "~4.0.2",
47+
"@angular/cli": "1.6.7",
48+
"@angular/compiler-cli": "^5.2.3",
49+
"@angular/language-service": "^5.2.3",
50+
"@types/node": "~9.4.0",
51+
"codelyzer": "~4.1.0",
5352
"ts-node": "~4.1.0",
54-
"tslint": "~5.8.0",
55-
"typescript": "~2.6.2"
53+
"tslint": "~5.9.1",
54+
"typescript": "~2.7.1"
5655
}
5756
}

public/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import "reflect-metadata";
88
import * as express from "express";
99
import { join } from "path";
1010
import { readFileSync } from "fs";
11-
var compression = require("compression");
11+
const compression = require("compression");
1212

1313
enableProdMode();
1414

server.ts

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/assets/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Don't Let Him Poo",
3-
"short_name": "Dont Letim",
2+
"name": "Angular Scaffolding",
3+
"short_name": "Angular Scaffolding",
44
"theme_color": "#333333",
55
"background_color": "#333333",
66
"display": "fullscreen",

tslint.json

Lines changed: 12 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,19 @@
11
{
2-
"rulesDirectory": [
3-
"node_modules/codelyzer"
4-
],
2+
"rulesDirectory": ["node_modules/codelyzer"],
53
"rules": {
64
"arrow-return-shorthand": true,
75
"callable-types": true,
86
"class-name": true,
9-
"comment-format": [
10-
true,
11-
"check-space"
12-
],
7+
"comment-format": [true, "check-space"],
138
"curly": true,
149
"eofline": true,
1510
"forin": true,
16-
"import-blacklist": [
17-
true,
18-
"rxjs"
19-
],
11+
"import-blacklist": [true, "rxjs"],
2012
"import-spacing": true,
21-
"indent": [
22-
true,
23-
"spaces"
24-
],
13+
"indent": [true, "spaces"],
2514
"interface-over-type-literal": true,
2615
"label-position": true,
27-
"max-line-length": [
28-
true,
29-
140
30-
],
16+
"max-line-length": [true, 140],
3117
"member-access": false,
3218
"member-ordering": [
3319
true,
@@ -42,24 +28,14 @@
4228
],
4329
"no-arg": true,
4430
"no-bitwise": true,
45-
"no-console": [
46-
true,
47-
"debug",
48-
"info",
49-
"time",
50-
"timeEnd",
51-
"trace"
52-
],
31+
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
5332
"no-construct": true,
5433
"no-debugger": true,
5534
"no-duplicate-super": true,
5635
"no-empty": false,
5736
"no-empty-interface": true,
5837
"no-eval": true,
59-
"no-inferrable-types": [
60-
true,
61-
"ignore-params"
62-
],
38+
"no-inferrable-types": [true, "ignore-params"],
6339
"no-misused-new": true,
6440
"no-non-null-assertion": true,
6541
"no-shadowed-variable": true,
@@ -80,19 +56,10 @@
8056
"check-whitespace"
8157
],
8258
"prefer-const": true,
83-
"quotemark": [
84-
true,
85-
"double"
86-
],
59+
"quotemark": [true, "double"],
8760
"radix": true,
88-
"semicolon": [
89-
true,
90-
"always"
91-
],
92-
"triple-equals": [
93-
true,
94-
"allow-null-check"
95-
],
61+
"semicolon": [true, "always"],
62+
"triple-equals": [true, "allow-null-check"],
9663
"typedef-whitespace": [
9764
true,
9865
{
@@ -103,7 +70,6 @@
10370
"variable-declaration": "nospace"
10471
}
10572
],
106-
"typeof-compare": true,
10773
"unified-signatures": true,
10874
"variable-name": false,
10975
"whitespace": [
@@ -114,18 +80,8 @@
11480
"check-separator",
11581
"check-type"
11682
],
117-
"directive-selector": [
118-
true,
119-
"attribute",
120-
"app",
121-
"camelCase"
122-
],
123-
"component-selector": [
124-
true,
125-
"element",
126-
"app",
127-
"kebab-case"
128-
],
83+
"directive-selector": [true, "attribute", "app", "camelCase"],
84+
"component-selector": [true, "element", "app", "kebab-case"],
12985
"use-input-property-decorator": true,
13086
"use-output-property-decorator": true,
13187
"use-host-property-decorator": true,

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy