Skip to content

Commit f554c0d

Browse files
committed
docs(gen): add releasing section
1 parent e1b1c6d commit f554c0d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

contributing.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,29 @@ reference GitHub issues that this commit **Closes**.
7070
A detailed explanation can be found in this [document][commit-message-format].
7171

7272
[commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y
73+
74+
# Releasing
75+
*(for contributors with push access)*
76+
77+
The `grunt release` task will do most of the work for you, see [`grunt-release`](https://github.com/geddski/grunt-release) for semver usage.
78+
79+
* Manually bump `package.json` version.
80+
81+
*note: this step will be removed once `3.0.0` is released*
82+
83+
* Run the release task `grunt release`.
84+
85+
*note: once `3.0.0` is released you will need to use a valid `grunt-release` target, see [here](https://github.com/geddski/grunt-release#using-grunt-release)*
86+
87+
* Push and publish the `angular-fullstack-deps` submodule.
88+
```bash
89+
$ cd angular-fullstack-deps
90+
$ git push && npm publish
91+
$ cd ..
92+
```
93+
94+
* Push and publish `generator-angular-fullstack`.
95+
```bash
96+
$ git push && git push --tags
97+
$ npm publish
98+
```

0 commit comments

Comments
 (0)