Skip to content

Commit 55044f0

Browse files
committed
fix(ts-example): fixed import in the example file
1 parent 323cb44 commit 55044f0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/release-please.yml

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ jobs:
6969
- name: Install dependencies
7070
run: yarn install
7171

72+
- name: Build library
73+
run: yarn build
74+
7275
# Step 4: Publish to npm
7376
- name: Publish to npm
7477
run: yarn publish --non-interactive --access public

examples/ts-component-tests/src/my-element.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { html, css, PropertyValues } from "lit";
22
import litLogo from './assets/lit.svg'
33
import viteLogo from '/vite.svg'
4-
import component, { Props } from "../../lit-functions/src";
4+
import component, { Props } from "../../../src/index";
55

66
const style = css`
77
:host {

0 commit comments

Comments
 (0)