Skip to content

Commit

Permalink
chore: 🤖 v10
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBasal committed Nov 24, 2021
1 parent 1907ba5 commit 323bee3
Show file tree
Hide file tree
Showing 8 changed files with 5,444 additions and 2,742 deletions.
File renamed without changes.
8 changes: 2 additions & 6 deletions e2e/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"types": [
"jasmine",
"jasminewd2",
"node"
]
"target": "es2018",
"types": ["jasmine", "jasminewd2", "node"]
}
}
8,129 changes: 5,416 additions & 2,713 deletions package-lock.json

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.9",
"@angular/common": "~9.1.9",
"@angular/compiler": "~9.1.9",
"@angular/core": "~9.1.9",
"@angular/forms": "~9.1.9",
"@angular/platform-browser": "~9.1.9",
"@angular/platform-browser-dynamic": "~9.1.9",
"@angular/router": "~9.1.9",
"@angular/animations": "~10.2.5",
"@angular/common": "~10.2.5",
"@angular/compiler": "~10.2.5",
"@angular/core": "~10.2.5",
"@angular/forms": "~10.2.5",
"@angular/platform-browser": "~10.2.5",
"@angular/platform-browser-dynamic": "~10.2.5",
"@angular/router": "~10.2.5",
"@ngneat/lib": "^1.0.1",
"rxjs": "~6.5.4",
"schematics-utilities": "1.1.1",
"tslib": "^1.10.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.7",
"@angular-devkit/build-ng-packagr": "~0.901.7",
"@angular-devkit/schematics": "^9.1.1",
"@angular-devkit/build-angular": "~0.1002.3",
"@angular-devkit/build-ng-packagr": "~0.1002.3",
"@angular-devkit/schematics": "^10.2.3",
"@angular-devkit/schematics-cli": "^0.901.7",
"@angular/cli": "~9.1.7",
"@angular/compiler-cli": "~9.1.9",
"@angular/cli": "~10.2.3",
"@angular/compiler-cli": "~10.2.5",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
Expand All @@ -56,20 +56,20 @@
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^9.2.0",
"ng-packagr": "^9.0.0",
"ng-packagr": "^10.1.0",
"prettier": "^1.18.2",
"protractor": "~7.0.0",
"standard-version": "^6.0.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3"
"typescript": "~4.0.8"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion projects/ngneat/error-tailor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Seamless form errors for Angular Applications",
"schematics": "./schematics/src/collection.json",
"dependencies": {
"tslib": "^1.10.0"
"tslib": "^2.0.0"
},
"keywords": [
"angular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const api = [DefaultControlErrorComponent, ControlErrorAnchorDirective, ControlE
entryComponents: [DefaultControlErrorComponent]
})
export class ErrorTailorModule {
static forRoot(config: ErrorTailorConfig = {}): ModuleWithProviders {
static forRoot(config: ErrorTailorConfig = {}): ModuleWithProviders<ErrorTailorModule> {
return {
ngModule: ErrorTailorModule,
providers: [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
Expand Down
3 changes: 3 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@
"template-banana-in-box": true,
"template-no-negated-async": true,
"use-lifecycle-interface": true,
"variable-name": {
"options": ["ban-keywords", "check-format", "allow-pascal-case"]
},
"use-pipe-transform-interface": true
}
}

0 comments on commit 323bee3

Please sign in to comment.