bun-types 1.1.15 → 1.1.16-canary.20240622T140522

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 (3) hide show
  1. package/bun.d.ts +1 -1
  2. package/package.json +1 -1
  3. package/test.d.ts +1 -1
package/bun.d.ts CHANGED
@@ -1572,7 +1572,7 @@ declare module "bun" {
1572
1572
  define?: Record<string, string>;
1573
1573
  // origin?: string; // e.g. http://mydomain.com
1574
1574
  loader?: { [k in string]: Loader };
1575
- sourcemap?: "none" | "inline" | "external"; // default: "none"
1575
+ sourcemap?: "none" | "linked" | "inline" | "external"; // default: "none", true -> "inline"
1576
1576
  /**
1577
1577
  * package.json `exports` conditions used when resolving imports
1578
1578
  *
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.15",
2
+ "version": "1.1.16-canary.20240622T140522",
3
3
  "name": "bun-types",
4
4
  "license": "MIT",
5
5
  "main": "",
package/test.d.ts CHANGED
@@ -1293,7 +1293,7 @@ declare module "bun:test" {
1293
1293
  * - If expected is a `string` or `RegExp`, it will check the `message` property.
1294
1294
  * - If expected is an `Error` object, it will check the `name` and `message` properties.
1295
1295
  * - If expected is an `Error` constructor, it will check the class of the `Error`.
1296
- * - If expected is not provided, it will check if anything as thrown.
1296
+ * - If expected is not provided, it will check if anything has thrown.
1297
1297
  *
1298
1298
  * @example
1299
1299
  * function fail() {