Skip to content

Commit fb72582

Browse files
authoredJul 29, 2021
fix(stack-blitz-tests): revert enabling Ivy as it broke harness examples (#1009)
- remove tslint and codelyzer from examples - update jasmine dependencies - remove unused material-module.ts from test assets - add jasmine-core to package.json in stack-blitz-tests/ - disable `noImplicitAny` in stack-blitz-tests' tsconfig.spec.json since `jasmine-core/lib/jasmine-core/jasmine.js` imported in `test/jasemine-setup.ts` is not compatible Fixes #997
1 parent e4ef48b commit fb72582

File tree

10 files changed

+18
-373
lines changed

10 files changed

+18
-373
lines changed
 

‎material.angular.io/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@angular/cli": "^12.1.0",
6969
"@angular/compiler-cli": "^12.1.0",
7070
"@types/imagemin": "^7.0.0",
71-
"@types/jasmine": "^3.6.6",
71+
"@types/jasmine": "^3.7.7",
7272
"@types/node": "^14.14.22",
7373
"@types/shelljs": "~0.8.8",
7474
"@typescript-eslint/eslint-plugin": "4.16.1",
@@ -81,7 +81,7 @@
8181
"firebase-tools": "^9.10.2",
8282
"imagemin": "^7.0.1",
8383
"imagemin-pngquant": "^9.0.2",
84-
"jasmine-core": "^3.6.0",
84+
"jasmine-core": "^3.7.1",
8585
"jasmine-spec-reporter": "^6.0.0",
8686
"karma": "~6.3.2",
8787
"karma-chrome-launcher": "^3.1.0",

‎material.angular.io/src/app/shared/stack-blitz/stack-blitz-writer.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ const TEMPLATE_FILES = [
3131
'tsconfig.json',
3232
'tsconfig.app.json',
3333
'tsconfig.spec.json',
34-
'tslint.json',
3534
'src/index.html',
3635
'src/styles.scss',
3736
'src/polyfills.ts',
@@ -50,12 +49,11 @@ const TEST_TEMPLATE_FILES = [
5049
'tsconfig.json',
5150
'tsconfig.app.json',
5251
'tsconfig.spec.json',
53-
'tslint.json',
5452
'src/index.html',
5553
'src/styles.scss',
5654
'src/polyfills.ts',
5755
'src/main.ts',
58-
'src/test/jasmine-setup.ts',
56+
'src/test/jasmine-setup.ts'
5957
];
6058

6159
const TAGS: string[] = ['angular', 'material', 'example'];
@@ -91,8 +89,8 @@ const testDependencies = {
9189
'@angular/platform-browser': angularVersion,
9290
'@angular/platform-browser-dynamic': angularVersion,
9391
'@angular/router': angularVersion,
94-
'@types/jasmine': '^3.6.6',
95-
'jasmine-core': '^3.6.0',
92+
'@types/jasmine': '^3.7.7',
93+
'jasmine-core': '^3.7.1',
9694
'moment': '^2.29.1',
9795
'rxjs': '^6.6.7',
9896
'tslib': '^2.2.0',

‎material.angular.io/src/assets/stack-blitz-tests/package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@
3333
"@angular/compiler-cli": "^12.0.0",
3434
"@angular/language-service": "^12.0.0",
3535
"@angular/localize": "^12.0.0",
36-
"@types/jasmine": "^3.6.6",
36+
"@types/jasmine": "^3.7.7",
3737
"@types/node": "^14.14.22",
38-
"codelyzer": "^6.0.1",
38+
"jasmine-core": "^3.7.1",
3939
"ts-node": "^8.10.2",
40-
"tslint": "~6.1.2",
4140
"typescript": "~4.2.3"
4241
}
4342
}

‎material.angular.io/src/assets/stack-blitz-tests/src/app/material-module.ts

-94
This file was deleted.

‎material.angular.io/src/assets/stack-blitz-tests/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
"strictInjectionParameters": true,
3737
"strictInputAccessModifiers": true,
3838
"strictTemplates": true,
39-
"enableIvy": true
39+
"enableIvy": false
4040
}
4141
}

‎material.angular.io/src/assets/stack-blitz-tests/tsconfig.spec.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./out-tsc/spec",
5+
"noImplicitAny": false,
56
"types": [
67
"jasmine",
78
"node"

‎material.angular.io/src/assets/stack-blitz-tests/tslint.json

-131
This file was deleted.

‎material.angular.io/src/assets/stack-blitz/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@
3434
"@angular/language-service": "^12.0.0",
3535
"@angular/localize": "^12.0.0",
3636
"@types/node": "^14.14.22",
37-
"codelyzer": "^6.0.1",
3837
"ts-node": "^8.10.2",
39-
"tslint": "~6.1.3",
4038
"typescript": "~4.2.3"
4139
}
4240
}

0 commit comments

Comments
 (0)
Please sign in to comment.