bun-types 1.1.30-canary.20241006T140459 → 1.1.30

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/bun.d.ts +10 -0
  2. package/package.json +1 -1
package/bun.d.ts CHANGED
@@ -1647,6 +1647,16 @@ declare module "bun" {
1647
1647
  * @default false
1648
1648
  */
1649
1649
  bytecode?: boolean;
1650
+ /**
1651
+ * Add a banner to the bundled code such as "use client";
1652
+ */
1653
+ banner?: string;
1654
+ /**
1655
+ * Add a footer to the bundled code such as a comment block like
1656
+ *
1657
+ * `// made with bun!`
1658
+ */
1659
+ footer?: string;
1650
1660
 
1651
1661
  /**
1652
1662
  * **Experimental**
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.30-canary.20241006T140459",
2
+ "version": "1.1.30",
3
3
  "name": "bun-types",
4
4
  "license": "MIT",
5
5
  "main": "",