@thi.ng/cache 2.3.70 → 2.3.72

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 +14 -13
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <!-- This file is generated - DO NOT EDIT! -->
2
- <!-- Please see: https://github.com/thi-ng/umbrella/blob/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
- # ![@thi.ng/cache](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/banners/thing-cache.svg?4dc85e1d)
2
+ <!-- Please see: https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
+ # ![@thi.ng/cache](https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/banners/thing-cache.svg?4dc85e1d)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/cache.svg)](https://www.npmjs.com/package/@thi.ng/cache)
6
6
  ![npm downloads](https://img.shields.io/npm/dm/@thi.ng/cache.svg)
@@ -8,11 +8,12 @@
8
8
 
9
9
  > [!NOTE]
10
10
  > This is one of 214 standalone projects, maintained as part
11
- > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
11
+ > of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
12
12
  > and anti-framework.
13
13
  >
14
- > 🚀 Please help me to work full-time on these projects by [sponsoring me on
15
- > GitHub](https://github.com/sponsors/postspectacular). Thank you! ❤️
14
+ > 🚀 Please help me to work full-time on these projects by [sponsoring
15
+ > me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
16
+ > Thank you! ❤️
16
17
 
17
18
  - [About](#about)
18
19
  - [Available strategies](#available-strategies)
@@ -54,11 +55,11 @@ strategies](https://en.wikipedia.org/wiki/Cache_replacement_policies).
54
55
 
55
56
  **STABLE** - used in production
56
57
 
57
- [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bcache%5D+in%3Atitle)
58
+ [Search or submit any issues for this package](https://codeberg.org/thi.ng/umbrella/issues?q=%5Bcache%5D)
58
59
 
59
60
  ## Related packages
60
61
 
61
- - [@thi.ng/associative](https://github.com/thi-ng/umbrella/tree/develop/packages/associative) - ES Map/Set-compatible implementations with customizable equality semantics & supporting operations
62
+ - [@thi.ng/associative](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/associative) - ES Map/Set-compatible implementations with customizable equality semantics & supporting operations
62
63
 
63
64
  ## Installation
64
65
 
@@ -90,20 +91,20 @@ Package sizes (brotli'd, pre-treeshake): ESM: 1.09 KB
90
91
 
91
92
  ## Dependencies
92
93
 
93
- - [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api)
94
- - [@thi.ng/dcons](https://github.com/thi-ng/umbrella/tree/develop/packages/dcons)
94
+ - [@thi.ng/api](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/api)
95
+ - [@thi.ng/dcons](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/dcons)
95
96
 
96
97
  Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
97
98
 
98
99
  ## Usage examples
99
100
 
100
101
  One project in this repo's
101
- [/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
102
+ [/examples](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples)
102
103
  directory is using this package:
103
104
 
104
- | Screenshot | Description | Live demo | Source |
105
- |:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------|
106
- | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/commit-table-ssr.png" width="240"/> | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-table-ssr) |
105
+ | Screenshot | Description | Live demo | Source |
106
+ |:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------------------------------------------------------|
107
+ | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/commit-table-ssr.png" width="240"/> | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/commit-table-ssr) |
107
108
 
108
109
  ## API
109
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/cache",
3
- "version": "2.3.70",
3
+ "version": "2.3.72",
4
4
  "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -8,7 +8,7 @@
8
8
  "sideEffects": false,
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "git+https://github.com/thi-ng/umbrella.git",
11
+ "url": "git+https://codeberg.org/thi.ng/umbrella.git",
12
12
  "directory": "packages/cache"
13
13
  },
14
14
  "homepage": "https://thi.ng/cache",
@@ -40,12 +40,12 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.12.17",
44
- "@thi.ng/dcons": "^3.2.189"
43
+ "@thi.ng/api": "^8.12.19",
44
+ "@thi.ng/dcons": "^3.2.191"
45
45
  },
46
46
  "devDependencies": {
47
- "esbuild": "^0.27.2",
48
- "typedoc": "^0.28.16",
47
+ "esbuild": "^0.28.0",
48
+ "typedoc": "^0.28.18",
49
49
  "typescript": "^5.9.3"
50
50
  },
51
51
  "keywords": [
@@ -92,5 +92,5 @@
92
92
  ],
93
93
  "year": 2018
94
94
  },
95
- "gitHead": "1107498d31504dc63d1a457b5def387d7a134f69\n"
95
+ "gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
96
96
  }