Skip to content

Commit c0af4c8

Browse files
author
Devlin Junker
committed
following instructions to update tests
1 parent 33ed421 commit c0af4c8

File tree

4 files changed

+35
-9
lines changed

4 files changed

+35
-9
lines changed

downstream_projects.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
{
22
"packageDir": "./dist",
33
"projects": {
4-
"typescript37": "./test-typescript-versions/typescript3.7",
5-
"typescript38": "./test-typescript-versions/typescript3.8",
6-
"typescript39": "./test-typescript-versions/typescript3.9",
7-
"typescript40": "./test-typescript-versions/typescript4.0",
8-
"typescript41": "./test-typescript-versions/typescript4.1",
9-
"typescript42": "./test-typescript-versions/typescript4.2",
10-
"typescript43": "./test-typescript-versions/typescript4.3",
11-
"sample-app-angular": "https://github.com/ui-router/sample-app-angular.git",
12-
"angular14": "./test-angular-versions/v14"
4+
"angular14": "./test-angular-versions/v14",
5+
"typescript46": "./test-typescript-versions/typescript4.6",
6+
"sample-app-angular": "https://github.com/ui-router/sample-app-angular.git"
137
}
148
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { UIRouter } from '@uirouter/angular';
2+
console.log(UIRouter); // tslint:disable-line:no-console
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "@uirouter/angular-test-typescript4.6",
3+
"version": "1.0.0",
4+
"description": "Test against Typescript 4.6",
5+
"scripts": {
6+
"test": "tsc"
7+
},
8+
"author": "",
9+
"license": "MIT",
10+
"dependencies": {
11+
"@angular/common": "^12",
12+
"@angular/core": "^12",
13+
"@uirouter/angular": "latest",
14+
"rxjs": "^6.0.0",
15+
"typescript": "4.6"
16+
},
17+
"devDependencies": {}
18+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"moduleResolution": "node",
4+
"module": "commonjs",
5+
"lib": ["es6", "dom"],
6+
"noImplicitAny": true,
7+
"noEmit": true,
8+
"target": "es5",
9+
"typeRoots": ["node_modules/@types"]
10+
},
11+
"files": ["index.ts"]
12+
}

0 commit comments

Comments
 (0)