mirror of
https://github.com/stoatchat/javascript-client-sdk.git
synced 2026-07-21 04:25:27 -04:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
const { task, src } = require('gulp');
|
|
const typedoc = require('gulp-typedoc');
|
|
|
|
task("typedoc", () =>
|
|
src(["src/**/*.ts"])
|
|
.pipe(typedoc({
|
|
out: "./docs",
|
|
|
|
name: "revolt.js",
|
|
readme: "README.md",
|
|
version: true,
|
|
}))
|
|
); |