Skip to content

Commit

Permalink
chore: redeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
megheaiulian committed Mar 21, 2024
1 parent cb86e29 commit 309e910
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage/
dist/
storybook-static/
__snapshots__/
5 changes: 5 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
- name: Build storybook
run: npm run storybook:build

- name: Fix imports
run: |
[ -d "stories" ] && sed -i 's/..\/src/..\/dist/g' stories/*.stories.js || true
[ -d "demo" ] && sed -i 's/..\/src/..\/dist/g' demo/*.js || true
- uses: rossjrw/pr-preview-action@v1
with:
source-dir: ./storybook-static
Expand Down
2 changes: 1 addition & 1 deletion stories/cosmoz-autocomplete.stories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { html } from 'lit-html';
import '@neovici/cosmoz-autocomplete/autocomplete';
import '../src/autocomplete/index.ts';
import { colors } from './data';

export default {
Expand Down

0 comments on commit 309e910

Please sign in to comment.