Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
feat: upgrade to angular 8
Browse files Browse the repository at this point in the history
BREAKING CHANGE: require angular 8
  • Loading branch information
scttcper committed Aug 5, 2019
1 parent 65acd73 commit 27edf4c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 31 deletions.
53 changes: 26 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,49 +14,48 @@
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"semantic-release": "cd dist && semantic-release",
"ghpages": "ng build --prod --no-progress --baseHref='/ngx-csv/'"
"ghpages": "ng build --prod --no-progress"
},
"private": true,
"dependencies": {
"@angular/animations": "8.0.3",
"@angular/common": "8.0.3",
"@angular/compiler": "8.0.3",
"@angular/core": "8.0.3",
"@angular/forms": "8.0.3",
"@angular/http": "8.0.0-beta.10",
"@angular/platform-browser": "8.0.3",
"@angular/platform-browser-dynamic": "8.0.3",
"@angular/router": "8.0.3",
"@ctrl/ngx-github-buttons": "2.1.6",
"@angular/animations": "8.2.0",
"@angular/common": "8.2.0",
"@angular/compiler": "8.2.0",
"@angular/core": "8.2.0",
"@angular/forms": "8.2.0",
"@angular/platform-browser": "8.2.0",
"@angular/platform-browser-dynamic": "8.2.0",
"@angular/router": "8.2.0",
"@ctrl/ngx-github-buttons": "3.2.1",
"bootstrap": "4.3.1",
"core-js": "3.1.4",
"rxjs": "6.5.2",
"zone.js": "0.9.1"
"zone.js": "0.10.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.800.6",
"@angular/cli": "8.0.6",
"@angular/compiler-cli": "8.0.3",
"@angular/language-service": "8.0.3",
"@types/fs-extra": "7.0.0",
"@angular-devkit/build-angular": "0.802.0",
"@angular/cli": "8.2.0",
"@angular/compiler-cli": "8.2.0",
"@angular/language-service": "8.2.0",
"@types/fs-extra": "8.0.0",
"@types/jasmine": "3.3.16",
"@types/node": "12.0.12",
"@types/node": "12.6.9",
"codelyzer": "5.1.0",
"fs-extra": "8.0.1",
"fs-extra": "8.1.0",
"jasmine-core": "3.4.0",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.6",
"karma": "4.2.0",
"karma-chrome-launcher": "3.0.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"karma-mocha-reporter": "2.2.5",
"ng-packagr": "5.2.0",
"ng-packagr": "5.4.3",
"rimraf": "2.6.3",
"semantic-release": "15.13.19",
"ts-node": "8.2.0",
"tsickle": "0.35.0",
"tslint": "5.17.0",
"typescript": "3.4.5"
"ts-node": "8.3.0",
"tsickle": "0.36.0",
"tslint": "5.18.0",
"typescript": "3.5.3"
},
"release": {
"branch": "master"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"version": "0.0.0-placeholder",
"peerDependencies": {
"@angular/core": ">=6.0.0 <9.0.0",
"@angular/platform-browser": ">=6.0.0 <9.0.0"
"@angular/core": ">=8.0.0",
"@angular/platform-browser": ">=8.0.0"
},
"repository": "typectrl/ngx-csv",
"homepage": "https://github.com/typectrl/ngx-csv",
Expand Down
4 changes: 4 additions & 0 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"outDir": "./out-tsc/app",
"types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.ts"
],
Expand Down
8 changes: 6 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"typeRoots": [
Expand All @@ -18,5 +18,9 @@
"es2018",
"dom"
]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}

0 comments on commit 27edf4c

Please sign in to comment.