Skip to content

Commit

Permalink
feat: angular 14
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzodianni committed Dec 29, 2022
1 parent faff2da commit f2d8d05
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 60 deletions.
39 changes: 19 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,31 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@angular/animations": "^14.2.0",
"@angular/common": "^14.2.0",
"@angular/compiler": "^14.2.0",
"@angular/core": "^14.2.0",
"@angular/forms": "^14.2.0",
"@angular/platform-browser": "^14.2.0",
"@angular/platform-browser-dynamic": "^14.2.0",
"@angular/router": "^14.2.0",
"rxjs": "~7.5.0",
"sidebarjs": "9.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.10",
"@angular/cli": "~13.3.10",
"@angular/compiler-cli": "~13.3.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"@angular-devkit/build-angular": "^14.2.10",
"@angular/cli": "~14.2.10",
"@angular/compiler-cli": "^14.2.0",
"@types/jasmine": "~4.0.0",
"jasmine-core": "~4.3.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^13.0.0",
"typescript": "~4.6.2"
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^14.2.0",
"typescript": "~4.7.2"
}
}
31 changes: 0 additions & 31 deletions projects/example/src/app/app.component.spec.ts

This file was deleted.

3 changes: 1 addition & 2 deletions projects/example/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Component } from '@angular/core';
import { SidebarConfig, SidebarjsService } from 'ng-sidebarjs';
import { SidebarPosition } from 'sidebarjs';
import { SidebarConfig, SidebarjsService, SidebarPosition } from 'ng-sidebarjs';

@Component({
selector: 'example-root',
Expand Down
6 changes: 3 additions & 3 deletions projects/ng-sidebarjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
],
"dependencies": {
"sidebarjs": "9.0.0",
"tslib": "^2.1.0"
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0"
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
}
}
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,17 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"paths": {
"ng-sidebarjs": [
"dist/ng-sidebarjs/ng-sidebarjs",
"dist/ng-sidebarjs"
]
},
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2017",
"target": "es2020",
"module": "es2020",
"lib": [
"es2020",
Expand Down

0 comments on commit f2d8d05

Please sign in to comment.