Skip to content

Commit

Permalink
chore: Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexXanderGrib committed May 6, 2023
1 parent 8373131 commit 1866cc6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monads-io",
"version": "2.0.0",
"version": "2.0.2",
"description": "🚀 Efficient Monads for JS: Maybe (Option) and Either (Result)",
"scripts": {
"test": "jest",
Expand Down Expand Up @@ -28,12 +28,12 @@
"./either": {
"require": "./dist/either.exports.js",
"import": "./dist/either.exports.mjs",
"types": "./dist/either.d.ts"
"types": "./dist/either.exports.d.ts"
},
"./maybe": {
"require": "./dist/maybe.exports.js",
"import": "./dist/maybe.exports.mjs",
"types": "./dist/maybe.d.ts"
"types": "./dist/maybe.exports.d.ts"
},
"./types": {
"types": "./dist/types.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import typescript from "rollup-plugin-typescript2";
import { builtinModules } from "module";
import glob from "glob";
import { glob } from "glob";
import cleanup from "rollup-plugin-cleanup";
import prettier from "rollup-plugin-prettier";

Expand Down
21 changes: 16 additions & 5 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
{
"name": "Package",
"out": "./docs/api",
"entryPoints": ["./index.d.ts"],
"exclude": ["src/__test__", "**/node_modules/**"],
"externalPattern": ["**/node_modules/**"],
"entryPoints": [
"./index.d.ts",
],
"exclude": [
"src/__test__",
"**/node_modules/**"
],
"externalPattern": [
"**/node_modules/**"
],
"excludePrivate": false,
"hideGenerator": true,
"readme": "README.md",
"theme": "default",
"tsconfig": "./tsconfig.json"
}
"tsconfig": "./tsconfig.json",
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-missing-exports"
]
}

0 comments on commit 1866cc6

Please sign in to comment.