Skip to content

Commit d5b0b43

Browse files
nelidiakonidzefulls1z3
authored andcommitted
chore: update deps
1 parent 598c680 commit d5b0b43

File tree

238 files changed

+7250
-6155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+7250
-6155
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ jobs:
77
JOBS: 1
88
steps:
99
- checkout
10-
- run: sudo yarn global add @angular/cli@8
11-
- run: sudo yarn global add greenkeeper-lockfile@1
10+
- run: sudo yarn global add @angular/cli@10
1211
- restore_cache:
1312
keys:
1413
- deps-{{ .Branch }}-{{ checksum "yarn.lock" }}

.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ root = true
33

44
[*]
55
charset = utf-8
6-
end_of_line = lf
76
indent_style = space
87
indent_size = 2
98
insert_final_newline = true
109
trim_trailing_whitespace = true
1110

1211
[*.md]
13-
max_line_length = 140
12+
max_line_length = off
1413
trim_trailing_whitespace = false

.eslintrc.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["**/*"],
4+
"plugins": ["@nrwl/nx"],
5+
"overrides": [
6+
{
7+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
8+
"rules": {
9+
"@nrwl/nx/enforce-module-boundaries": [
10+
"error",
11+
{
12+
"enforceBuildableLibDependency": true,
13+
"allow": [],
14+
"depConstraints": [{ "sourceTag": "*", "onlyDependOnLibsWithTags": ["*"] }]
15+
}
16+
]
17+
}
18+
},
19+
{
20+
"files": ["*.ts", "*.tsx"],
21+
"extends": ["plugin:@nrwl/nx/typescript"],
22+
"parserOptions": { "project": "./tsconfig.*?.json" },
23+
"rules": {}
24+
},
25+
{
26+
"files": ["*.js", "*.jsx"],
27+
"extends": ["plugin:@nrwl/nx/javascript"],
28+
"rules": {}
29+
}
30+
]
31+
}

.github/ISSUE_TEMPLATE.md

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATI
44
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
55
-->
66

7-
**I'm submitting a ...** (check one with "x")
7+
**I'm submitting a ...** (check one with "x")
8+
89
```
910
[ ] Regression (a behavior that used to work and stopped working in a new release)
1011
[ ] Bug report <!-- Please check the repository for a similar issue or PR before submitting -->
@@ -14,37 +15,44 @@ ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
1415
```
1516

1617
**Current behavior**
18+
1719
<!-- Describe how the issue manifests. -->
1820

1921
**Expected/desired behavior**
22+
2023
<!-- Describe what the desired behavior would be. -->
2124

2225
**Minimal reproduction of the problem with instructions**
26+
2327
<!--
2428
For bug reports please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via
2529
https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5).
2630
-->
2731

2832
**What is the motivation / use case for changing the behavior?**
33+
2934
<!-- Describe the motivation or the concrete use case. -->
3035

3136
**Environment**
32-
* **Angular version:** X.Y.Z
37+
38+
- **Angular version:** X.Y.Z
3339
<!-- Check whether this is still an issue in the most recent Angular version -->
3440

35-
* **Browser:**
36-
- [ ] Chrome (desktop) version XX
37-
- [ ] Chrome (Android) version XX
38-
- [ ] Chrome (iOS) version XX
39-
- [ ] Firefox version XX
40-
- [ ] Safari (desktop) version XX
41-
- [ ] Safari (iOS) version XX
42-
- [ ] IE version XX
43-
- [ ] Edge version XX
44-
45-
* **For Tooling issues:**
46-
- Node version: XX <!-- run `node --version` -->
47-
- Platform: <!-- Mac, Linux, Windows -->
48-
49-
* Others:
41+
- **Browser:**
42+
43+
* [ ] Chrome (desktop) version XX
44+
* [ ] Chrome (Android) version XX
45+
* [ ] Chrome (iOS) version XX
46+
* [ ] Firefox version XX
47+
* [ ] Safari (desktop) version XX
48+
* [ ] Safari (iOS) version XX
49+
* [ ] IE version XX
50+
* [ ] Edge version XX
51+
52+
- **For Tooling issues:**
53+
54+
* Node version: XX <!-- run `node --version` -->
55+
* Platform: <!-- Mac, Linux, Windows -->
56+
57+
- Others:
5058
<!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... -->

.husky/commit-msg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no-install commitlint --edit $1

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no-install lint-staged

.lintstagedrc

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

.prettierignore

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,4 @@
11
# Add files here to ignore them from prettier formatting
22

3-
# compiled output
43
/dist
5-
/tmp
6-
/out-tsc
7-
8-
# dependencies
9-
node_modules/
10-
11-
# IDEs and editors
12-
/.idea
13-
.project
14-
.classpath
15-
.c9/
16-
*.launch
17-
.settings/
18-
*.sublime-workspace
19-
20-
# IDE - VSCode
21-
.vscode/*
22-
!.vscode/settings.json
23-
!.vscode/tasks.json
24-
!.vscode/launch.json
25-
!.vscode/extensions.json
26-
27-
# misc
28-
/.sass-cache
29-
/connect.lock
304
/coverage
31-
/libpeerconnection.log
32-
npm-debug.log
33-
yarn-error.log
34-
testem.log
35-
/typings
36-
37-
# System Files
38-
.DS_Store
39-
Thumbs.db
40-
41-
# others
42-
/.awcache
43-
/.cache
44-
/docs
45-
/tools
46-
angular.json
47-
test-report.xml
48-
yarn.lock

.prettierrc

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
{
2-
"printWidth": 140,
3-
"singleQuote": true
2+
"printWidth": 120,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"arrowParens": "avoid",
6+
"overrides": [
7+
{
8+
"files": "*.component.html",
9+
"options": {
10+
"parser": "angular"
11+
}
12+
},
13+
{
14+
"files": "*.html",
15+
"options": {
16+
"parser": "html"
17+
}
18+
}
19+
]
420
}

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
88

99
Examples of behavior that contributes to creating a positive environment include:
1010

11-
* Using welcoming and inclusive language
12-
* Being respectful of differing viewpoints and experiences
13-
* Gracefully accepting constructive criticism
14-
* Focusing on what is best for the community
15-
* Showing empathy towards other community members
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
1616

1717
Examples of unacceptable behavior by participants include:
1818

19-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20-
* Trolling, insulting/derogatory comments, and personal or political attacks
21-
* Public or private harassment
22-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23-
* Other conduct which could reasonably be considered inappropriate in a professional setting
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
2424

2525
## Our Responsibilities
2626

0 commit comments

Comments
 (0)