Skip to content

Commit 4f179b4

Browse files
committed
build: fix the build
1 parent 8cd9783 commit 4f179b4

File tree

7 files changed

+150
-202
lines changed

7 files changed

+150
-202
lines changed

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
]
2424
},
2525
"dependencies": {
26-
"@angular/animations": "^9.0.0",
27-
"@angular/cdk": "^9.0.0",
28-
"@angular/common": "^9.0.0",
29-
"@angular/compiler": "^9.0.0",
30-
"@angular/core": "^9.0.0",
31-
"@angular/forms": "^9.0.0",
32-
"@angular/material": "^9.0.0",
33-
"@angular/platform-browser": "^9.0.0",
34-
"@angular/platform-browser-dynamic": "^9.0.0",
35-
"@angular/router": "^9.0.0",
26+
"@angular/animations": "^9.0.3",
27+
"@angular/cdk": "^9.1.0",
28+
"@angular/common": "^9.0.3",
29+
"@angular/compiler": "^9.0.3",
30+
"@angular/core": "^9.0.3",
31+
"@angular/forms": "^9.0.3",
32+
"@angular/material": "^9.1.0",
33+
"@angular/platform-browser": "^9.0.3",
34+
"@angular/platform-browser-dynamic": "^9.0.3",
35+
"@angular/router": "^9.0.3",
3636
"@ngrx/store": "^8.0.0-rc.0",
3737
"@phenomnomnominal/tsquery": "^3.0.0",
3838
"@testing-library/dom": "^6.12.2",
@@ -44,14 +44,14 @@
4444
"zone.js": "~0.10.2"
4545
},
4646
"devDependencies": {
47-
"@angular-devkit/build-angular": "~0.900.1",
48-
"@angular-devkit/build-ng-packagr": "~0.900.1",
49-
"@angular/cli": "~9.0.1",
50-
"@angular/compiler-cli": "^9.0.0",
51-
"@angular/language-service": "^9.0.0",
47+
"@angular-devkit/build-angular": "~0.900.3",
48+
"@angular-devkit/build-ng-packagr": "~0.900.3",
49+
"@angular/cli": "~9.0.3",
50+
"@angular/compiler-cli": "^9.0.3",
51+
"@angular/language-service": "^9.0.3",
5252
"@testing-library/jest-dom": "^4.1.0",
5353
"@types/jest": "~24.0.11",
54-
"@types/node": "^12.11.1",
54+
"@types/node": "^13.7.6",
5555
"codelyzer": "^5.1.2",
5656
"husky": "^2.3.0",
5757
"jest": "^24.1.0",

projects/jest-utils/src/lib/configure-test-suite.ts

Lines changed: 0 additions & 26 deletions
This file was deleted.

projects/jest-utils/src/lib/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
export * from './configure-test-suite';
21
export * from './create-mock';

projects/jest-utils/tsconfig.lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"experimentalDecorators": true,
1313
"importHelpers": true,
1414
"allowSyntheticDefaultImports": true,
15-
"types": [],
15+
"types": ["@types/jest"],
1616
"lib": ["dom", "es2015"]
1717
},
1818
"angularCompilerOptions": {

projects/testing-library/tsconfig.lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"emitDecoratorMetadata": true,
1212
"experimentalDecorators": true,
1313
"importHelpers": true,
14-
"types": [],
14+
"types": ["./types", "@types/node"],
1515
"lib": ["dom", "es2015", "es2018.promise"]
1616
},
1717
"angularCompilerOptions": {

projects/testing-library/types.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare function afterEach(fn: () => {}, timeout?: number): void;

0 commit comments

Comments
 (0)