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
By default the build can be quite verbose when creating the documents. If you would prefer that the builds be silent, the buildQuiet option is offered allowing the build to complete silently, except when actual errors occur.
73
73
74
74
```
75
-
buildOptions.buildQuiet: true
75
+
buildOptions.buildQuiet = true;
76
76
```
77
77
78
+
The way that NODe is written protects already generated documents by ignoring future requests when documents already exist. If you plan to update your documents many times with the same build name directory you will want to use the updateApi option.
79
+
80
+
```
81
+
buildOptions.updateApi = true;
82
+
```
83
+
84
+
Setting this option to _true_ tells NODe to create and overwrite the existing documents with each request.
85
+
78
86
79
87
### As a Script
80
88
81
-
You can also use NODe as your own script simply to pull and create Node.js documentation.
89
+
You can also use NODe as your own script simply to pull and create Node.js documentation, but with less options. Even though this feature has less options, the options that do not exist can be easily scripted.
0 commit comments