You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<palign="center">The missing documentation tool for your Angular application</p>
14
+
15
+
<palign="center">
16
+
<imgsrc="https://raw.githubusercontent.com/groupe-sii/compodoc/master/screenshots/main-view.png"alt="Compodoc: The missing documentation tool for your Angular application">
17
+
</p>
12
18
13
19
## Install
14
20
15
21
```
16
22
$ npm install --save-dev gulp-compodoc
17
23
```
18
24
19
-
20
25
## Usage
21
26
22
27
```js
23
28
constgulp=require('gulp'),
24
29
compodoc=require('gulp-compodoc');
25
30
26
31
gulp.task('default', () => {
27
-
gulp.src('src/**/*.ts')
28
-
.pipe(compodoc())
32
+
returngulp.src('src/**/*.ts')
33
+
.pipe(compodoc({
34
+
output:'documentation',
35
+
tsconfig:'src/tsconfig.json',
36
+
serve:true
37
+
}))
29
38
);
30
39
```
31
40
32
41
33
42
## API
34
43
35
-
### compodoc([options])
44
+
### compodoc(options)
36
45
37
46
#### options
38
47
39
-
##### foo
40
-
41
-
Type: `boolean`<br>
42
-
Default: `false`
43
-
44
-
Lorem ipsum.
45
-
48
+
All options from [compodoc](https://github.com/compodoc/compodoc) are available. The list is available [here](https://github.com/compodoc/compodoc#usage).
0 commit comments