Skip to content

Commit

Permalink
angular 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
troyanskiy committed Sep 16, 2020
1 parent fe87cd0 commit 601c085
Show file tree
Hide file tree
Showing 10 changed files with 8,879 additions and 7,905 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion e2e/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"target": "es2018",
"types": [
"jasmine",
"jasminewd2",
Expand Down
16,685 changes: 8,824 additions & 7,861 deletions package-lock.json

Large diffs are not rendered by default.

64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-resource-mono",
"version": "7.0.0",
"version": "10.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -20,12 +20,12 @@
"http.full": "npm run http.test && npm run http.build && npm run http.publish",
"cordova.lint": "ng lint @ngx-resource/handler-cordova-advanced-http",
"cordova.test": "npm run cordova.lint && ng test @ngx-resource/handler-cordova-advanced-http --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"cordova.build": "ng build @ngx-resource/handler-cordova-advanced-http",
"cordova.publish": "npm publish dist/ngx-resource/handler-cordova-advanced-http",
"cordova.build": "ng build @ngx-resource/handler-cordova-advanced-http --prod",
"cordova.publish": "npm publish dist/ngx-resource/handler-cordova-advanced-http --access public",
"cordova.full": "npm run cordova.test && npm run cordova.build && npm run cordova.publish",
"fetch.lint": "ng lint @ngx-resource/handler-fetch",
"fetch.test": "npm run fetch.lint && ng test @ngx-resource/handler-fetch --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"fetch.build": "ng build @ngx-resource/handler-fetch",
"fetch.build": "ng build @ngx-resource/handler-fetch --prod",
"fetch.publish": "npm publish dist/ngx-resource/handler-fetch --tag beta --access public",
"fetch.full": "npm run fetch.test && npm run fetch.build && npm run fetch.publish",
"ngrx.lint": "ng lint @ngx-resource/ngrx",
Expand All @@ -38,41 +38,41 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~9.0.0-rc.2",
"@angular/common": "~9.0.0-rc.2",
"@angular/compiler": "~9.0.0-rc.2",
"@angular/core": "~9.0.0-rc.2",
"@angular/forms": "~9.0.0-rc.2",
"@angular/platform-browser": "~9.0.0-rc.2",
"@angular/platform-browser-dynamic": "~9.0.0-rc.2",
"@angular/router": "~9.0.0-rc.2",
"@angular/animations": "~10.1.1",
"@angular/common": "~10.1.1",
"@angular/compiler": "~10.1.1",
"@angular/core": "~10.1.1",
"@angular/forms": "~10.1.1",
"@angular/platform-browser": "~10.1.1",
"@angular/platform-browser-dynamic": "~10.1.1",
"@angular/router": "~10.1.1",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.0-rc.2",
"@angular-devkit/build-ng-packagr": "~0.900.0-rc.2",
"@angular-devkit/core": "^9.0.0-rc.2",
"@angular-devkit/schematics": "^9.0.0-rc.2",
"@angular/cli": "~9.0.0-rc.2",
"@angular/compiler-cli": "~9.0.0-rc.2",
"@angular/language-service": "~9.0.0-rc.2",
"@angular-devkit/build-angular": "~0.1001.1",
"@angular-devkit/build-ng-packagr": "~0.1001.1",
"@angular-devkit/core": "^10.1.1",
"@angular-devkit/schematics": "^10.1.1",
"@angular/cli": "~10.1.1",
"@angular/compiler-cli": "~10.1.1",
"@angular/language-service": "~10.1.1",
"@types/jasmine": "~3.4.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"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.0",
"ng-packagr": "^9.0.0-rc.1",
"protractor": "~5.4.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^10.1.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "~3.6.4"
"tslint": "~6.1.0",
"typescript": "~4.0.2"
}
}
5 changes: 4 additions & 1 deletion projects/ngx-resource/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-resource/core",
"version": "9.0.1",
"version": "10.0.0",
"description": "Core of resource library",
"author": "Roman Rosluk <[email protected]>",
"license": "MIT",
Expand All @@ -20,6 +20,9 @@
"Angular2",
"Resource"
],
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"rxjs": "^6.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-resource/handler-cordova-advanced-http",
"version": "7.1.0",
"version": "10.0.0",
"description": "Resource Handler based on cordova-advanced-http",
"author": "Roman Rosluk <[email protected]>",
"license": "MIT",
Expand All @@ -23,7 +23,10 @@
"Angular2",
"resource-cordova-advanced-http"
],
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@ngx-resource/core": "^7.1.0"
"@ngx-resource/core": "^10.0.0"
}
}
7 changes: 5 additions & 2 deletions projects/ngx-resource/handler-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-resource/handler-fetch",
"version": "7.1.0-beta.1",
"version": "10.0.0",
"description": "Resource handler for fetch",
"author": "Roman Rosluk <[email protected]>",
"license": "MIT",
Expand All @@ -19,7 +19,10 @@
"ngx-resource-handler-fetch",
"Resource"
],
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@ngx-resource/core": "^7.1.0"
"@ngx-resource/core": "^10.0.0"
}
}
11 changes: 7 additions & 4 deletions projects/ngx-resource/handler-ngx-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-resource/handler-ngx-http",
"version": "9.0.0",
"version": "10.0.0",
"description": "Resource handler for angular",
"author": "Roman Rosluk <[email protected]>",
"license": "MIT",
Expand All @@ -24,10 +24,13 @@
"Angular2",
"Resource"
],
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">= 9.0.0",
"@angular/core": ">= 9.0.0",
"@ngx-resource/core": "^9.0.0",
"@angular/common": ">= 10.0.0",
"@angular/core": ">= 10.0.0",
"@ngx-resource/core": "^10.0.0",
"rxjs": "^6.0.0"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down
1 change: 0 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"extends": [
"tslint-sonarts",
"tslint:recommended"
],
"rules": {
Expand Down

0 comments on commit 601c085

Please sign in to comment.