bun-types 1.1.30-canary.20241001T140525 → 1.1.30-canary.20241003T140558
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.
- package/bun.d.ts +6 -0
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -5463,6 +5463,12 @@ declare module "bun" {
|
|
|
5463
5463
|
*/
|
|
5464
5464
|
const version: string;
|
|
5465
5465
|
|
|
5466
|
+
/**
|
|
5467
|
+
* The current version of Bun with the shortened commit sha of the build
|
|
5468
|
+
* @example "v1.1.30 (d09df1af)"
|
|
5469
|
+
*/
|
|
5470
|
+
const version_with_sha: string;
|
|
5471
|
+
|
|
5466
5472
|
/**
|
|
5467
5473
|
* The git sha at the time the currently-running version of Bun was compiled
|
|
5468
5474
|
* @example
|
package/package.json
CHANGED