Skip to content

Commit

Permalink
Merge pull request #9 from JoJk0/FIX/NPM
Browse files Browse the repository at this point in the history
fix: add build step to workflow
  • Loading branch information
JoJk0 authored Jul 15, 2023
2 parents edeb72e + 4088573 commit 871f38b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
- name: Install
run: pnpm i

- name: Build
run: pnpm build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 0 additions & 3 deletions src/components/AppButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import VWave from 'v-wave'
import { useMouseInElement } from '@vueuse/core'
import { computed, ref } from 'vue'
// import { createLocalBorderShineDirective } from '~/directives/border-shine'
const { variant = 'secondary' } = defineProps<{
variant?: 'primary' | 'secondary' | 'text'
}>()
Expand All @@ -16,7 +14,6 @@ const { vWave } = createLocalWaveDirective({
duration: 0.2,
})
// const { vBorderShine } = createLocalBorderShineDirective()
const buttonEl = ref(null)
const { elementX, elementY, elementWidth, elementHeight, isOutside } = useMouseInElement(buttonEl)
Expand Down

0 comments on commit 871f38b

Please sign in to comment.