@tscircuit/core 0.0.7 → 0.0.8

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/dist/index.js CHANGED
@@ -2021,6 +2021,9 @@ var Project = class {
2021
2021
 
2022
2022
  // lib/register-catalogue.ts
2023
2023
  extendCatalogue(components_exports);
2024
+ extendCatalogue({
2025
+ Bug: Chip
2026
+ });
2024
2027
  export {
2025
2028
  Board,
2026
2029
  Capacitor,
@@ -1,3 +1,8 @@
1
1
  import * as Components from "./components"
2
2
  import { extendCatalogue } from "./fiber/catalogue"
3
3
  extendCatalogue(Components)
4
+
5
+ // Aliases
6
+ extendCatalogue({
7
+ Bug: Components.Chip,
8
+ })
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
5
  "types": "index.ts",
6
- "version": "0.0.7",
6
+ "version": "0.0.8",
7
7
  "main": "dist/index.js",
8
8
  "files": [
9
9
  "index.ts",