@shirudo/result 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,7 +5,6 @@ Robust, type-safe error handling for TypeScript.
5
5
  `@shirudo/result` models expected failures as values instead of hidden exceptions. Functions return `Result<T, E>`, callers must handle both states, and TypeScript narrows access to `value` and `error` only when the state is known.
6
6
 
7
7
  [![CI](https://github.com/shi-rudo/result-ts/actions/workflows/ci.yml/badge.svg)](https://github.com/shi-rudo/result-ts/actions/workflows/ci.yml)
8
- [![codecov](https://codecov.io/gh/shi-rudo/result-ts/graph/badge.svg)](https://codecov.io/gh/shi-rudo/result-ts)
9
8
  [![npm version](https://img.shields.io/npm/v/@shirudo/result.svg)](https://www.npmjs.com/package/@shirudo/result)
10
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
11
10
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.7%2B-blue.svg)](https://www.typescriptlang.org/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shirudo/result",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Robust, type-safe error handling for TypeScript using the Result pattern (Monad)",
5
5
  "type": "module",
6
6
  "private": false,
@@ -79,7 +79,7 @@
79
79
  "test": "vitest",
80
80
  "test:coverage": "vitest run --coverage --coverage.reporter=text --coverage.reporter=json --coverage.reporter=lcov",
81
81
  "test:edge": "node scripts/check-edge-runtime.mjs",
82
- "check": "pnpm typecheck && pnpm test:types && pnpm test run && pnpm docs:check && pnpm docs:build && pnpm build && pnpm test:edge && pnpm test:exports",
82
+ "check": "pnpm typecheck && pnpm test:types && pnpm test run && pnpm build && pnpm docs:check && pnpm docs:build && pnpm test:edge && pnpm test:exports",
83
83
  "check:clean": "git diff --exit-code && git diff --cached --exit-code",
84
84
  "docs:dev": "vitepress dev docs",
85
85
  "docs:check": "node scripts/check-docs-examples.mjs",