Skip to content

Commit 5214d42

Browse files
committed
commit for stable version of angular 8
1 parent b6fa5ac commit 5214d42

File tree

7 files changed

+4012
-2049
lines changed

7 files changed

+4012
-2049
lines changed

browserslist

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# You can see what browsers were selected by your queries by running:
6+
# npx browserslist
7+
8+
> 0.5%
9+
last 2 versions
10+
Firefox ESR
11+
not dead
12+
not IE 9-11 # For IE 9-11 support, remove 'not'.

package-lock.json

Lines changed: 3980 additions & 2029 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,32 +54,33 @@
5454
},
5555
"main": "./dist/index.js",
5656
"dependencies": {
57-
"@angular/animations": "^4.0.0",
57+
"@angular/animations": "^8.2.14",
5858
"@angular/common": "^8.2.14",
59-
"@angular/compiler": "^7.2.16",
59+
"@angular/compiler": "^8.2.14",
6060
"@angular/core": "^8.2.14",
6161
"@angular/forms": "^8.2.14",
6262
"@angular/platform-browser": "^8.2.14",
63-
"@angular/platform-browser-dynamic": "^4.0.0",
64-
"@angular/router": "^4.0.0",
63+
"@angular/platform-browser-dynamic": "^8.2.14",
64+
"@angular/router": "^8.2.14",
6565
"angularjs2-tabs": "0.0.1-beta.1",
6666
"bootstrap": "^3.3.7",
6767
"core-js": "^2.4.1",
6868
"prismjs": "^1.6.0",
69-
"rxjs": "^5.4.1",
69+
"rxjs": "^6.6.7",
7070
"tslib": "^1.9.0",
71-
"zone.js": "^0.8.14"
71+
"zone.js": "~0.9.1",
72+
"rxjs-compat": "^6.0.0-rc.0"
7273
},
7374
"devDependencies": {
74-
"@angular-devkit/build-angular": "~0.13.0",
75-
"@angular/cli": "^7.3.10",
76-
"@angular/compiler-cli": "^4.0.0",
77-
"@angular/language-service": "^4.0.0",
75+
"@angular-devkit/build-angular": "~0.803.29",
76+
"@angular/cli": "^8.3.29",
77+
"@angular/compiler-cli": "^8.2.14",
78+
"@angular/language-service": "^8.2.14",
7879
"@types/codemirror": "0.0.58",
7980
"@types/jasmine": "~2.5.53",
8081
"@types/jasminewd2": "~2.0.2",
8182
"@types/node": "~6.0.60",
82-
"codelyzer": "~3.0.1",
83+
"codelyzer": "^5.0.1",
8384
"codemirror": "^5.39.2",
8485
"fusioncharts": "^3.14.0-sr.1",
8586
"jasmine-core": "~2.6.2",
@@ -96,7 +97,7 @@
9697
"rollup": "^0.45.2",
9798
"ts-node": "~3.0.4",
9899
"tslint": "~5.3.2",
99-
"typescript": "2.9.2"
100+
"typescript": "3.5.3"
100101
},
101102
"engines": {
102103
"node": ">=4.4.1"

src/tsconfig.app.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
5-
"module": "es2015",
65
"baseUrl": "",
76
// typeRoots option has been previously configured
87
"typeRoots": [

src/tsconfig.spec.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/spec",
5-
"module": "commonjs",
6-
"target": "es5",
75
"baseUrl": "",
86
"types": [
97
"jasmine",

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4+
"downlevelIteration": true,
45
"importHelpers": true,
6+
"module": "esnext",
57
"outDir": "./dist/out-tsc",
68
"baseUrl": "src",
79
"sourceMap": true,
810
"declaration": false,
911
"moduleResolution": "node",
1012
"emitDecoratorMetadata": true,
1113
"experimentalDecorators": true,
12-
"target": "es5",
14+
"target": "es2015",
1315
"typeRoots": [
1416
"node_modules/@types"
1517
],

tslint.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@
100100

101101
"directive-selector": [true, "attribute", "app", "camelCase"],
102102
"component-selector": [false, "element", "app", "camel-case"],
103-
"use-input-property-decorator": true,
104-
"use-output-property-decorator": true,
105-
"use-host-property-decorator": true,
103+
"no-inputs-metadata-property": true,
104+
"no-outputs-metadata-property": true,
105+
"no-host-metadata-property": true,
106106
"no-input-rename": true,
107107
"no-output-rename": true,
108-
"use-life-cycle-interface": true,
108+
"use-lifecycle-interface": true,
109109
"use-pipe-transform-interface": true,
110110
"component-class-suffix": true,
111111
"directive-class-suffix": true,

0 commit comments

Comments
 (0)