Skip to content

Commit b5e07f8

Browse files
committed
Fixed merge conflict in menu.component.ts
2 parents 5919096 + 46f4d97 commit b5e07f8

File tree

246 files changed

+14974
-11221
lines changed

Some content is hidden

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

246 files changed

+14974
-11221
lines changed

.commitlintrc.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"extends": ["@commitlint/config-angular"],
3+
"rules": {
4+
"subject-case": [
5+
2,
6+
"always",
7+
["sentence-case", "start-case", "pascal-case", "upper-case", "lower-case"]
8+
],
9+
"type-enum": [
10+
2,
11+
"always",
12+
[
13+
"build",
14+
"chore",
15+
"ci",
16+
"docs",
17+
"feat",
18+
"fix",
19+
"perf",
20+
"refactor",
21+
"revert",
22+
"style",
23+
"test",
24+
"sample"
25+
]
26+
]
27+
}
28+
}

.github/ISSUE_TEMPLATE.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
55
-->
66

77
## I'm submitting a...
8-
<!--
8+
<!--
99
Please search GitHub for a similar issue or PR before submitting.
1010
Check one of the following options with "x" -->
11-
<pre><code>
12-
[ ] Regression <!--(a behavior that used to work and stopped working in a new release)-->
13-
[ ] Bug report
14-
[ ] Feature request
15-
[ ] Documentation issue or request (new chapter/page)
16-
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.
17-
</code></pre>
11+
12+
- [ ] Regression <!--(a behavior that used to work and stopped working in a new release)-->
13+
- [ ] Bug report
14+
- [ ] Feature request
15+
- [ ] Documentation issue or request (new chapter/page)
16+
- [ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.
17+
1818

1919
## Current behavior
2020
<!-- Describe how the issue manifests. -->
@@ -33,11 +33,12 @@ Check one of the following options with "x" -->
3333

3434
## Environment
3535

36-
<pre><code>
37-
For Tooling issues:
38-
- Node version: XX <!-- run `node --version` -->
39-
- Platform: <!-- Mac, Linux, Windows -->
36+
#### For Tooling issues:
37+
<!-- Run `node --version` -->
38+
- Node version: XX
39+
40+
<!-- Mac, Linux, Windows -->
41+
- Platform:
4042

41-
Others:
43+
#### Others:
4244
<!-- Anything else relevant? Operating system version, IDE, package manager, ... -->
43-
</code></pre>

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Please check if your PR fulfills the following requirements:
88
What kind of change does this PR introduce?
99

1010
<!-- Please check the one that applies to this PR using "x". -->
11-
```
12-
[ ] Bugfix
13-
[ ] Feature
14-
[ ] Code style update (formatting, local variables)
15-
[ ] Refactoring (no functional changes, no api changes)
16-
[ ] Build related changes
17-
[ ] Docs
18-
[ ] Other... Please describe:
19-
```
11+
12+
- [ ] Bugfix
13+
- [ ] Feature
14+
- [ ] Code style update (formatting, local variables)
15+
- [ ] Refactoring (no functional changes, no api changes)
16+
- [ ] Build related changes
17+
- [ ] Docs
18+
- [ ] Other... Please describe:
19+
2020

2121
## What is the current behavior?
2222
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
@@ -28,10 +28,9 @@ Issue Number: N/A
2828

2929

3030
## Does this PR introduce a breaking change?
31-
```
32-
[ ] Yes
33-
[ ] No
34-
```
31+
- [ ] Yes
32+
- [ ] No
33+
3534

3635
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->
3736

.github/workflows/lighthouse.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v2
1414
- name: Use Node.js 12.x
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v2
1616
with:
1717
node-version: 12.x
1818
# Build needs around 400 seconds on Netlify.
@@ -28,7 +28,7 @@ jobs:
2828
site_name: 'docs-nestjs'
2929
max_timeout: 600
3030
- name: Run Lighthouse on urls and validate with lighthouserc
31-
uses: treosh/lighthouse-ci-action@v2
31+
uses: treosh/lighthouse-ci-action@v8
3232
with:
3333
urls: |
3434
${{ steps.wait-for-netflify-preview.outputs.url }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dist/*
55
!/dist/v4
66
!/dist/v5
77
!/dist/v6
8+
!/dist/v7
89

910
/tmp
1011
/out-tsc
@@ -39,7 +40,7 @@ dist/*
3940
npm-debug.log
4041
testem.log
4142
/typings
42-
43+
.angular
4344
# e2e
4445
/e2e/*.js
4546
/e2e/*.map

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.18.4
1+
14.16.0

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ Footer should contain a [closing reference to an issue](https://help.github.com/
169169
Samples: (even more [samples](https://github.com/nestjs/nest/commits/master))
170170
171171
```
172-
docs(changelog) update change log to beta.5
172+
docs(changelog): update change log to beta.5
173173
```
174174
```
175-
bugfix(@nestjs/core) need to depend on latest rxjs and zone.js
175+
fix(@nestjs/core): need to depend on latest rxjs and zone.js
176176
177177
The version in our package.json gets copied to the one we publish, and users need the latest of these.
178178
```
@@ -184,10 +184,11 @@ If the commit reverts a previous commit, it should begin with `revert: `, follow
184184
Must be one of the following:
185185
186186
* **build**: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
187+
* **chore**: Updating tasks etc; no production code change
187188
* **ci**: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
188189
* **docs**: Documentation only changes
189-
* **feature**: A new feature
190-
* **bugfix**: A bug fix
190+
* **feat**: A new feature
191+
* **fix**: A bug fix
191192
* **perf**: A code change that improves performance
192193
* **refactor**: A code change that neither fixes a bug nor adds a feature
193194
* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(The MIT License)
22

3-
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>
3+
Copyright (c) 2017-2022 Kamil Myśliwiec <http://kamilmysliwiec.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="http://nestjs.com/" target="_blank"><img src="https://nestjs.com/img/logo_text.svg" width="320" alt="Nest Logo" /></a>
2+
<a href="http://nestjs.com/" target="blank"><img src="https://nestjs.com/img/logo-small.svg" width="120" alt="Nest Logo" /></a>
33
</p>
44

55
[travis-image]: https://api.travis-ci.org/nestjs/nest.svg?branch=master

angular.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,15 @@
2020
"assets": [
2121
"src/assets",
2222
"src/favicon.ico",
23+
"src/apple-touch-icon.png",
24+
"src/apple-touch-icon-precomposed.png",
25+
"src/browserconfig.xml",
26+
"src/mstile-150x150.png",
2327
"src/_redirects"
2428
],
2529
"styles": [
26-
"src/styles.scss"
30+
"src/styles.scss",
31+
"src/assets/css/perfect-scrollbar.min.css"
2732
]
2833
},
2934
"configurations": {
@@ -34,10 +39,16 @@
3439
"maximumWarning": "6kb"
3540
}
3641
],
37-
"optimization": true,
42+
"optimization": {
43+
"scripts": true,
44+
"styles": {
45+
"minify": true,
46+
"inlineCritical": true
47+
},
48+
"fonts": true
49+
},
3850
"outputHashing": "all",
3951
"sourceMap": false,
40-
"extractCss": true,
4152
"namedChunks": false,
4253
"aot": true,
4354
"extractLicenses": true,
@@ -82,8 +93,7 @@
8293
"src/styles.scss"
8394
],
8495
"assets": [
85-
"src/assets",
86-
"src/favicon.ico"
96+
"src/assets"
8797
]
8898
}
8999
},
@@ -140,4 +150,4 @@
140150
"cli": {
141151
"analytics": false
142152
}
143-
}
153+
}

0 commit comments

Comments
 (0)