Skip to content

Commit

Permalink
feat: Ivy support (#72)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This version requires Angular v13 and up.
  • Loading branch information
yuri-apanasik authored Jul 5, 2023
1 parent d092f29 commit 001a7a7
Show file tree
Hide file tree
Showing 20 changed files with 34,088 additions and 15,687 deletions.
35 changes: 35 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"root": true,
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"createDefaultProgram": true,
"project": [
"tsconfig.json"
]
},
"extends": [
"plugin:@angular-eslint/recommended"
]
},
{
"files": [
"*.component.ts"
],
"extends": [
"plugin:@angular-eslint/template/process-inline-templates"
]
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
]
}
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ npm-debug.log
yarn-error.log
testem.log
/typings
/.angular

# System Files
.DS_Store
Expand Down
54 changes: 10 additions & 44 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,41 +87,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"ngx-script-loader-app-e2e": {
"root": "e2e/",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "ngx-script-loader-app:serve"
},
"configurations": {
"production": {
"devServerTarget": "ngx-script-loader-app:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.component.html"
]
}
}
Expand Down Expand Up @@ -155,19 +125,15 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/ngx-script-loader/tsconfig.lib.json",
"projects/ngx-script-loader/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"projects/ngx-script-loader/**/*.ts",
"projects/ngx-script-loader/**/*.component.html"
]
}
}
}
}
},
"defaultProject": "ngx-script-loader-app"
}
}
}
28 changes: 0 additions & 28 deletions e2e/protractor.conf.js

This file was deleted.

14 changes: 0 additions & 14 deletions e2e/src/app.e2e-spec.ts

This file was deleted.

11 changes: 0 additions & 11 deletions e2e/src/app.po.ts

This file was deleted.

13 changes: 0 additions & 13 deletions e2e/tsconfig.e2e.json

This file was deleted.

Loading

0 comments on commit 001a7a7

Please sign in to comment.