Skip to content

Commit

Permalink
chore: upgrade to Angular 8.0.0
Browse files Browse the repository at this point in the history
BREAKING CHANGE: ngx-speculoos is now built against Angular 8.0.0. If you want to use it with Angular 7.x, stick to the previous version of ngx-speculoos.
  • Loading branch information
jnizet committed May 31, 2019
1 parent 5873e25 commit f46816e
Show file tree
Hide file tree
Showing 7 changed files with 1,655 additions and 2,800 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
working_directory: ~/ngx-speculoos

docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers

steps:

Expand Down
3 changes: 1 addition & 2 deletions angular.json
Expand Up @@ -65,8 +65,7 @@
"styles": [
"projects/demo/src/styles.css"
],
"scripts": [],
"es5BrowserSupport": true
"scripts": []
},
"configurations": {
"production": {
Expand Down
27 changes: 13 additions & 14 deletions package.json
Expand Up @@ -14,29 +14,28 @@
},
"private": true,
"dependencies": {
"@angular/common": "7.2.15",
"@angular/compiler": "7.2.15",
"@angular/core": "7.2.15",
"@angular/forms": "7.2.15",
"@angular/platform-browser": "7.2.15",
"@angular/platform-browser-dynamic": "7.2.15",
"@angular/router": "7.2.15",
"@angular/common": "8.0.0",
"@angular/compiler": "8.0.0",
"@angular/core": "8.0.0",
"@angular/forms": "8.0.0",
"@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "8.0.0",
"@angular/router": "8.0.0",
"rxjs": "6.5.2",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.13.9",
"@angular-devkit/build-ng-packagr": "0.13.9",
"@angular/cli": "7.3.9",
"@angular/compiler-cli": "7.2.15",
"@angular/language-service": "7.2.15",
"@angular-devkit/build-angular": "0.800.0",
"@angular-devkit/build-ng-packagr": "0.800.0",
"@angular/cli": "8.0.1",
"@angular/compiler-cli": "8.0.0",
"@angular/language-service": "8.0.0",
"@compodoc/compodoc": "1.1.9",
"@types/jasmine": "3.3.13",
"@types/jasminewd2": "2.0.6",
"@types/node": "12.0.4",
"codecov": "3.5.0",
"codelyzer": "5.0.1",
"core-js": "2.6.9",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.1.0",
Expand All @@ -50,6 +49,6 @@
"tsickle": "0.35.0",
"tslib": "1.9.3",
"tslint": "5.17.0",
"typescript": "3.2.4"
"typescript": "3.4.5"
}
}
8 changes: 4 additions & 4 deletions projects/ngx-speculoos/package.json
Expand Up @@ -3,10 +3,10 @@
"version": "1.1.0",
"description": "Helps writing Angular unit tests",
"peerDependencies": {
"@angular/core": "^7.0.2",
"@angular/platform-browser": "^7.0.2",
"@angular/router": "^7.0.2",
"rxjs": "^6.3.3"
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/router": "^8.0.0",
"rxjs": "^6.5.2"
},
"license": "MIT",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Expand Up @@ -5,12 +5,12 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
Expand Down
1 change: 0 additions & 1 deletion tslint.json
Expand Up @@ -74,7 +74,6 @@
"no-return-await": true,
"no-switch-case-fall-through": true,
"no-this-assignment": true,
"no-use-before-declare": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"ordered-imports": false,
Expand Down

0 comments on commit f46816e

Please sign in to comment.