@tscircuit/schematic-viewer 1.0.1 → 1.0.2

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.
@@ -18,10 +18,12 @@ jobs:
18
18
  node-version: 18
19
19
 
20
20
  - name: Install dependencies
21
- run: yarn install
21
+ run: npm install
22
+ - name: Build
23
+ run: npm run build
22
24
 
23
25
  - name: Semantic Release
24
26
  env:
25
27
  GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
28
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
27
- run: yarn semantic-release
29
+ run: npx semantic-release
@@ -0,0 +1,7 @@
1
+ declare const Schematic: ({ children, elements: initialElements, style, }: {
2
+ children?: any;
3
+ elements?: any;
4
+ style?: any;
5
+ }) => JSX.Element;
6
+
7
+ export { Schematic };