@b9g/async-context 0.2.0 → 0.2.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/package.json +6 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b9g/async-context",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Lightweight AsyncContext polyfill for JavaScript runtimes. Implements TC39 AsyncContext proposal using AsyncLocalStorage.",
5
5
  "keywords": [
6
6
  "asynccontext",
@@ -12,6 +12,11 @@
12
12
  "async",
13
13
  "shovel"
14
14
  ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/bikeshaving/shovel.git",
18
+ "directory": "packages/async-context"
19
+ },
15
20
  "dependencies": {},
16
21
  "devDependencies": {
17
22
  "@b9g/libuild": "^0.1.18",
package/src/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // src/index.ts
3
3
  import { AsyncLocalStorage } from "node:async_hooks";
4
4
  var variableRegistry = /* @__PURE__ */ new Set();
5
- var NO_VALUE = /* @__PURE__ */ Symbol("NO_VALUE");
5
+ var NO_VALUE = Symbol("NO_VALUE");
6
6
  var AsyncVariable = class {
7
7
  #storage;
8
8
  #defaultValue;