Skip to content
This repository was archived by the owner on Dec 7, 2018. It is now read-only.

Commit b642f76

Browse files
committed
add compodoc support #50
1 parent cc60804 commit b642f76

File tree

8 files changed

+723
-2
lines changed

8 files changed

+723
-2
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
- run:
4343
name: run-docs
4444
command: npm run docs
45+
- run:
46+
name: run-compodoc
47+
command: npm run compodoc
4548
- run:
4649
name: run-codeclimate
4750
command: npm run codeclimate

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ dist
2828
aot
2929
.awcache
3030
docs
31+
documentation
3132
dll

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### Beta 7
2+
##### Features
3+
- add compodoc support #50
4+
5+
16
#### Beta 6
27
##### Bugfixes
38
- fix e2e tests on Windows. There are also some improvements for all other platforms

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ I suggest to add this repo as git remote to your repository to be able to update
3939
- [Codelyzer](https://github.com/mgechev/codelyzer)
4040
- Documentation
4141
- [TypeDoc](https://github.com/TypeStrong/typedoc)
42+
- [Compodod](https://github.com/compodoc/compodoc)
4243
- Continous Integration
4344
- [Travis CI](https://travis-ci.org/)
4445
- [Circle CI](https://circleci.com/)
@@ -48,6 +49,7 @@ I suggest to add this repo as git remote to your repository to be able to update
4849

4950

5051
## News
52+
- *10/06/2017* - Beta 7 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5153
- *10/05/2017* - Beta 6 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5254
- *09/22/2017* - Beta 5 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5355
- *09/18/2017* - Beta 4 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
@@ -224,10 +226,11 @@ If you have problems with e2e testing, you should downgrade `@types/jasmine` to
224226

225227
## Other
226228

227-
### To generate typescript's documentation (check docs/index.html with the result)
229+
### To generate typescript's documentation with typedocs (check docs/index.html for the result)
228230
- `npm run docs`
229231

230-
I have to write the documentation, but this project is ready to use typedocs
232+
### To generate the really cool compodoc's documentation (check documentation/index.html for the result)
233+
- `npm run compodoc`
231234

232235
### To generate webpack bundle's results
233236
- `npm run build:dev` (or `build:prod` or `build:prod:aot`)

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ deploy_script:
185185
# on successful build
186186
on_success:
187187
- npm run docs
188+
- npm run compodoc
188189
- codeclimate-test-reporter < coverage/lcov.info
189190
- node .\node_modules\coveralls\bin\coveralls.js < .\coverage\lcov.info
190191

0 commit comments

Comments
 (0)