Skip to content

Commit a8a029e

Browse files
committed
feat: bump all devDependencies
1 parent 53b446c commit a8a029e

File tree

8 files changed

+345
-309
lines changed

8 files changed

+345
-309
lines changed

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,26 +61,26 @@
6161
"@angular/cli": "~10.1.4",
6262
"@angular/compiler-cli": "~10.1.4",
6363
"@angular/language-service": "~10.1.4",
64-
"@commitlint/cli": "^8.3.5",
65-
"@commitlint/config-conventional": "^8.3.4",
66-
"@types/jasmine": "~3.5.10",
64+
"@commitlint/cli": "^11.0.0",
65+
"@commitlint/config-conventional": "^11.0.0",
66+
"@types/jasmine": "~3.5.14",
6767
"@types/jasminewd2": "~2.0.3",
68-
"@types/node": "^13.7.7",
69-
"codelyzer": "^5.1.2",
70-
"husky": "^4.2.3",
71-
"jasmine-core": "~3.5.0",
72-
"jasmine-spec-reporter": "~5.0.0",
73-
"karma": "~5.0.0",
68+
"@types/node": "^14.11.2",
69+
"codelyzer": "^6.0.1",
70+
"husky": "^4.3.0",
71+
"jasmine-core": "~3.6.0",
72+
"jasmine-spec-reporter": "~6.0.0",
73+
"karma": "~5.2.3",
7474
"karma-chrome-launcher": "~3.1.0",
7575
"karma-coverage-istanbul-reporter": "~3.0.2",
7676
"karma-jasmine": "~4.0.0",
7777
"karma-jasmine-html-reporter": "^1.5.0",
7878
"ng-packagr": "^10.1.0",
79-
"prettier": "^1.19.1",
79+
"prettier": "^2.1.2",
8080
"protractor": "~7.0.0",
81-
"semantic-release": "^17.0.4",
82-
"ts-node": "~8.8.1",
83-
"tslint": "~6.1.0",
81+
"semantic-release": "^17.1.2",
82+
"ts-node": "~9.0.0",
83+
"tslint": "~6.1.3",
8484
"typescript": "~4.0.3"
8585
}
8686
}

projects/ngx-raptorize-demo/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Karma configuration file, see link for more information
22
// https://karma-runner.github.io/1.0/config/configuration-file.html
33

4-
module.exports = function(config) {
4+
module.exports = function (config) {
55
config.set({
66
basePath: '',
77
frameworks: ['jasmine', '@angular-devkit/build-angular'],

projects/ngx-raptorize-demo/src/app/app.component.spec.ts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
import { TestBed, async } from '@angular/core/testing';
1+
import { TestBed, waitForAsync } from '@angular/core/testing';
22
import { AppComponent } from './app.component';
33
import { NgxRaptorizeModule } from 'ngx-raptorize';
44

55
describe('AppComponent', () => {
6-
beforeEach(async(() => {
7-
TestBed.configureTestingModule({
8-
imports: [NgxRaptorizeModule],
9-
declarations: [AppComponent],
10-
}).compileComponents();
11-
}));
6+
beforeEach(
7+
waitForAsync(() => {
8+
TestBed.configureTestingModule({
9+
imports: [NgxRaptorizeModule],
10+
declarations: [AppComponent],
11+
}).compileComponents();
12+
}),
13+
);
1214

1315
it('should create the app', () => {
1416
const fixture = TestBed.createComponent(AppComponent);

projects/ngx-raptorize/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Karma configuration file, see link for more information
22
// https://karma-runner.github.io/1.0/config/configuration-file.html
33

4-
module.exports = function(config) {
4+
module.exports = function (config) {
55
config.set({
66
basePath: '',
77
frameworks: ['jasmine', '@angular-devkit/build-angular'],

projects/ngx-raptorize/src/lib/konamiCode.directive.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ const bKey = new KeyboardEvent('keydown', { key: 'b' });
1010
const aKey = new KeyboardEvent('keydown', { key: 'a' });
1111

1212
@Component({
13-
template: `
14-
<div class="some-div" ngxKonamiCode (konami)="sayOk()"></div>
15-
`,
13+
template: ` <div class="some-div" ngxKonamiCode (konami)="sayOk()"></div> `,
1614
})
1715
class TestComponent {
1816
sayOk() {

projects/ngx-raptorize/src/lib/ngx-raptorize.component.spec.ts

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
1+
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
22

33
import { NgxRaptorizeComponent } from './ngx-raptorize.component';
44
import { NGX_RAPTORIZE_CONFIG } from './ngx-raptorize.token';
@@ -7,20 +7,22 @@ describe('NgxRaptorizeComponent', () => {
77
let component: NgxRaptorizeComponent;
88
let fixture: ComponentFixture<NgxRaptorizeComponent>;
99

10-
beforeEach(async(() => {
11-
TestBed.configureTestingModule({
12-
declarations: [NgxRaptorizeComponent],
13-
providers: [
14-
{
15-
provide: NGX_RAPTORIZE_CONFIG,
16-
useValue: {
17-
raptorImgSrc: '',
18-
raptorSoundSrc: '',
10+
beforeEach(
11+
waitForAsync(() => {
12+
TestBed.configureTestingModule({
13+
declarations: [NgxRaptorizeComponent],
14+
providers: [
15+
{
16+
provide: NGX_RAPTORIZE_CONFIG,
17+
useValue: {
18+
raptorImgSrc: '',
19+
raptorSoundSrc: '',
20+
},
1921
},
20-
},
21-
],
22-
}).compileComponents();
23-
}));
22+
],
23+
}).compileComponents();
24+
}),
25+
);
2426

2527
beforeEach(() => {
2628
fixture = TestBed.createComponent(NgxRaptorizeComponent);

projects/ngx-raptorize/src/lib/ngx-raptorize.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import {
4848
})
4949
export class NgxRaptorizeComponent {
5050
@ViewChild('raptor')
51-
raptor: ElementRef;
51+
raptor!: ElementRef;
5252

5353
constructor(
5454
@Inject(NGX_RAPTORIZE_CONFIG) public raptorizeConfig: NgxRaptorizeConfig,

0 commit comments

Comments
 (0)