Skip to content

Commit e753726

Browse files
authored
fix: install dependencies and build in publish.yml (#365)
1 parent 24bf444 commit e753726

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
node-version: '20.x'
2020
registry-url: 'https://registry.npmjs.org'
2121
scope: '@aws'
22+
- name: Install dependencies and build
23+
run: npm install && npm run build
2224
- name: Build demo app
2325
run: npm run packdemo
2426
- name: Get release info

example/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ import escapeHTML from 'escape-html';
5656
import './styles/styles.scss';
5757
import { ThemeBuilder } from './theme-builder/theme-builder';
5858
import { Commands } from './commands';
59-
import { group } from 'console';
6059

6160
export const createMynahUI = (initialData?: MynahUIDataModel): MynahUI => {
6261
const connector = new Connector();

0 commit comments

Comments
 (0)