Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update packages and replace builder #98

Closed
wants to merge 34 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
16dd052
chore: update packages and replace builder
NachoVazquez Aug 21, 2021
97ec340
fix: lint issues
NachoVazquez Aug 21, 2021
fdf976c
fix: jest problems
NachoVazquez Aug 21, 2021
f4de3d9
chore: update target and module in tsconfig to match latest Angular
NachoVazquez Aug 22, 2021
1e527a5
ci: update pipeline with new versions
NachoVazquez Aug 22, 2021
9abfdb1
fix: syntax errors at ci.yml
NachoVazquez Aug 22, 2021
b31a859
fix: use valid jest version when running node 10 in ci
NachoVazquez Aug 22, 2021
e6b0280
fix: try ci variation
NachoVazquez Aug 24, 2021
51004ba
wip
NachoVazquez Mar 12, 2022
e097f96
fix: final eslint issues
NachoVazquez Mar 12, 2022
2003ebc
fix(schematics): fix schematics e2e
santoshyadavdev Apr 17, 2022
2f700b1
fix(schematics): fix schematics e2e
santoshyadavdev Apr 17, 2022
0fba516
ci: try node 16 for e2e tests
NachoVazquez Apr 17, 2022
79b7ec2
ci: comment unneeded steps to test the pipelines
NachoVazquez Apr 17, 2022
42b6165
ci: reduce even further the versions to test
NachoVazquez Apr 17, 2022
cd6ded2
ci: test using node 14
NachoVazquez Apr 17, 2022
061566e
ci: test using node 12.1 and 12.0
NachoVazquez Apr 17, 2022
90f3aba
ci: test using node 11.x
NachoVazquez Apr 17, 2022
7ec9d11
ci: try only with v11 and node 16
NachoVazquez Apr 17, 2022
12d329e
ci: try only with v11 and node 14
NachoVazquez Apr 17, 2022
5998279
ci: try only with v11 and node 12
NachoVazquez Apr 18, 2022
90c68f8
chore: update gh actions versions
NachoVazquez May 31, 2022
3f21bab
fix: update zone import
NachoVazquez May 31, 2022
8c88f55
fix: try without e2e
NachoVazquez May 31, 2022
d311029
fix: try only app
NachoVazquez May 31, 2022
8eb0bff
fix: drop node 10 support
NachoVazquez May 31, 2022
271d846
fix: only e2e
NachoVazquez May 31, 2022
fcd0104
fix: attempt to fix mismatch on chrome versions
NachoVazquez May 31, 2022
bcc0ea6
fix: try different approach for chrome installer
NachoVazquez May 31, 2022
f06f8c9
fix: the same
NachoVazquez May 31, 2022
61e6ae8
fix: use stable chrome
NachoVazquez May 31, 2022
658570d
fix: use latest chrome
NachoVazquez May 31, 2022
cbef095
fix: use chrome stable
NachoVazquez May 31, 2022
ceeb434
fix: ignore v11
NachoVazquez May 31, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,7 @@
}
],
"@angular-eslint/no-forward-ref": "error",
"@typescript-eslint/array-type": [
"error",
{
"default": "array"
}
],
"@typescript-eslint/array-type": "off",
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/explicit-member-accessibility": [
Expand All @@ -65,7 +60,7 @@
}
}
],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/prefer-readonly": "error",
Expand Down Expand Up @@ -103,12 +98,13 @@
"@schematics/angular/application/*",
"@schematics/angular/workspace/*",
"zone.js/*",
"zone.js/dist/*"
"zone.js/dist/*",
"zone.js/plugins/*",
"jest-preset-angular/*"
]
}
],
"import/order": "warn",
"import/named": "warn",
"import/named": "off",
"import/no-unresolved": ["off", { "commonjs": true, "amd": true }],
"linebreak-style": "off",
"max-classes-per-file": ["error", 5],
Expand Down
Loading