@slango/tessera 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.
@@ -0,0 +1,4 @@
1
+
2
+ > @slango/tessera@1.0.1 lint /home/runner/work/slango/slango/packages/tessera
3
+ > eslint . --max-warnings 0
4
+
@@ -0,0 +1,14 @@
1
+
2
+ > @slango/tessera@1.0.1 test /home/runner/work/slango/slango/packages/tessera
3
+ > vitest --run
4
+
5
+
6
+  RUN  v3.2.4 /home/runner/work/slango/slango/packages/tessera
7
+
8
+ ✓ src/maybe.spec.ts (3 tests) 10ms
9
+
10
+  Test Files  1 passed (1)
11
+  Tests  3 passed (3)
12
+  Start at  04:54:35
13
+  Duration  812ms (transform 137ms, setup 0ms, collect 83ms, tests 10ms, environment 0ms, prepare 224ms)
14
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @slango/tessera
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 87e2b79: Dependencies bump
8
+
3
9
  ## 1.0.0
4
10
 
5
11
  ### Major Changes
package/README.md CHANGED
@@ -1 +1,32 @@
1
- # Tessera, a collection of typescript utilities (@slango/tessera)
1
+ # Tessera (@slango/tessera)
2
+
3
+ Collection of TypeScript utilities.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @slango/tessera
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import type { Maybe } from '@slango/tessera/maybe';
15
+
16
+ function greet(name: Maybe<string>) {
17
+ return name ?? 'Anonymous';
18
+ }
19
+ ```
20
+
21
+ ## Testing
22
+
23
+ Run linting and unit tests:
24
+
25
+ ```bash
26
+ pnpm lint
27
+ pnpm test
28
+ ```
29
+
30
+ ## Contributing
31
+
32
+ Issues and pull requests are welcome.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slango/tessera",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "description": "Collection of typescript utilities",
6
6
  "type": "module",
@@ -10,12 +10,12 @@
10
10
  "devDependencies": {
11
11
  "@vitest/coverage-v8": "3.2.4",
12
12
  "@vitest/ui": "3.2.4",
13
- "eslint": "9.32.0",
13
+ "eslint": "9.36.0",
14
14
  "typescript": "5.9.2",
15
15
  "vitest": "3.2.4",
16
- "@slango.configs/typescript": "1.0.4",
17
- "@slango.configs/eslint": "1.0.28",
18
- "@slango.configs/vitest": "1.0.21"
16
+ "@slango.configs/typescript": "1.0.5",
17
+ "@slango.configs/vitest": "1.0.30",
18
+ "@slango.configs/eslint": "1.1.9"
19
19
  },
20
20
  "scripts": {
21
21
  "build:check": "tsc --noEmit",