Skip to content

Commit 2d913ea

Browse files
committed
fix(build): now updating version
now updating version in package.json
1 parent 896d387 commit 2d913ea

File tree

4 files changed

+37
-29
lines changed

4 files changed

+37
-29
lines changed

CONTRIBUTING.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ Before you submit your Pull Request (PR) consider the following guidelines:
2828
* Commit your changes using a descriptive commit message that follows our
2929
[commit message conventions](#commit-message-guidelines). Adherence to these conventions
3030
is necessary because release notes are automatically generated from these messages.
31-
by running followed by npm run commit.
3231
```shell
3332
# stage your changes
3433
git add .
3534
# use git-cz interactive helper tool to commit
3635
npm run commit
36+
# or use following command if you install commitizen globally
37+
git cz
3738
```
3839
Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.
3940

package-lock.json

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
],
9797
"prepare": [
9898
"@semantic-release/changelog",
99+
"@semantic-release/npm",
99100
"@semantic-release/git"
100101
],
101102
"publish": [
@@ -123,13 +124,13 @@
123124
"@angular/pwa": "^0.7.5",
124125
"@angular/router": "^6.1.7",
125126
"@angular/service-worker": "^6.1.7",
126-
"@nestjs/common": "^5.3.5",
127-
"@nestjs/core": "^5.3.4",
127+
"@nestjs/common": "^5.3.6",
128+
"@nestjs/core": "^5.3.6",
128129
"@nestjs/elasticsearch": "^0.1.2",
129-
"@nestjs/microservices": "^5.3.5",
130-
"@nestjs/passport": "^5.0.1",
130+
"@nestjs/microservices": "^5.3.6",
131+
"@nestjs/passport": "^5.0.2",
131132
"@nestjs/swagger": "^2.5.1",
132-
"@nestjs/typeorm": "^5.2.0",
133+
"@nestjs/typeorm": "^5.2.1",
133134
"@nestjs/websockets": "^5.3.1",
134135
"@ngx-formly/core": "^5.0.0-beta.6",
135136
"@ngx-formly/material": "^5.0.0-beta.6",

stories/howto.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ How to migrate project to newer versions?
3737
3838
How to commit code?
3939

40-
```bash
41-
git status
42-
# if all is good
43-
git add .
44-
# now commit
45-
`git cz` # or npm run commit
46-
```
40+
```bash
41+
git status
42+
# stage your changes
43+
git add .
44+
# use git-cz interactive helper tool to commit
45+
npm run commit
46+
# or use following command if you install commitizen globally
47+
git cz
48+
```
49+
50+
> Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.
51+
52+
4753

4854
How to Cut a Release?
4955

@@ -56,7 +62,7 @@ https://adrianperez.codes/enforcing-commit-conventions/
5662
https://medium.com/@schalkneethling/automate-package-releases-with-semantic-release-and-commitizen-d7d4c337f04f
5763

5864
```bash
59-
export GH_TOKEN=<my_guthyb_token>
65+
export GH_TOKEN=<my_github_token>
6066
export CI=true
6167
npm run semantic-release
6268
```

0 commit comments

Comments
 (0)