We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 323cb44 commit 55044f0Copy full SHA for 55044f0
.github/workflows/release-please.yml
@@ -69,6 +69,9 @@ jobs:
69
- name: Install dependencies
70
run: yarn install
71
72
+ - name: Build library
73
+ run: yarn build
74
+
75
# Step 4: Publish to npm
76
- name: Publish to npm
77
run: yarn publish --non-interactive --access public
examples/ts-component-tests/src/my-element.ts
@@ -1,7 +1,7 @@
1
import { html, css, PropertyValues } from "lit";
2
import litLogo from './assets/lit.svg'
3
import viteLogo from '/vite.svg'
4
-import component, { Props } from "../../lit-functions/src";
+import component, { Props } from "../../../src/index";
5
6
const style = css`
7
:host {
0 commit comments