Skip to content

Commit

Permalink
¯\_(ツ)_/¯ It's something
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-rocska committed Sep 19, 2023
1 parent 6bf39dd commit e12bec4
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"types:check": "pnpm -r run types:check",
"prepublishOnly": "pnpm clean && pnpm build",
"publish-beta": "pnpm publish --tag beta",
"doc": "typedoc",
"doc": "typedoc --tsconfig tsconfig.doc.json",
"lint": "eslint .",
"coverage": "jest --coverage",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion pipe/src/Pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {Pipeline} from "./Pipeline";
import inverse from "./inverse";
import proverse from "./proverse";

type PreliminaryTasks =
export type PreliminaryTasks =
| Consecutive<NonEmptyOf<Proverse>>
| [];

Expand Down
28 changes: 28 additions & 0 deletions tsconfig.doc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.json",
"include": [
"invertible/src",
"pipe/src",
"utility/src",
"global.d.ts"
],
"typedocOptions": {
"name": "Invertible Functions & Pipelines",
"includeVersion": true,
"entryPoints": [
"invertible/src/index.ts",
"pipe/src/index.ts",
"utility/src/index.ts"
],
"entryPointStrategy": "expand",
"out": "var/docs",
"disableSources": true,
"readme": "./README.md",
"searchInComments": true,
"navigationLinks": {
"21Gram Consulting": "https://www.21gram.consulting",
"GitHub": "https://github.com/21GramConsulting/invertible"
}
}
}
24 changes: 0 additions & 24 deletions typedoc.json

This file was deleted.

0 comments on commit e12bec4

Please sign in to comment.