ciorent 0.0.4 → 0.0.5

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/latch.d.ts +4 -4
  2. package/package.json +7 -2
package/latch.d.ts CHANGED
@@ -5,10 +5,10 @@
5
5
  /**
6
6
  * Describe a latch
7
7
  */
8
- export interface Latch {
9
- 0: Promise<void>;
10
- 1: () => void;
11
- }
8
+ export type Latch = [
9
+ pause: Promise<void>,
10
+ open: () => void
11
+ ];
12
12
  /**
13
13
  * Create a latch
14
14
  */
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "ciorent",
3
- "version": "0.0.4",
4
- "description": "A concurrency library",
3
+ "version": "0.0.5",
4
+ "description": "A low-overhead, lightweight concurrency library",
5
+ "homepage": "https://ciorent.netlify.app",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/re-utils/ciorent"
9
+ },
5
10
  "keywords": [],
6
11
  "license": "MIT",
7
12
  "type": "module",