Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSnow committed Feb 29, 2024
1 parent cda38e8 commit f276472
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 17 deletions.
1 change: 0 additions & 1 deletion components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ declare module 'vue' {
Input: typeof import('./src/components/ui/input/Input.vue')['default']
Label: typeof import('./src/components/ui/label/Label.vue')['default']
LeakyPaywall: typeof import('./src/components/LeakyPaywall.vue')['default']
LoginDialog: typeof import('./src/components/LoginDialog.vue')['default']
Noop: typeof import('./src/components/Noop.vue')['default']
Popover: typeof import('./src/components/ui/popover/Popover.vue')['default']
PopoverContent: typeof import('./src/components/ui/popover/PopoverContent.vue')['default']
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"@graphql-codegen/client-preset": "4.2.4",
"@iconify-json/lucide": "^1.1.169",
"@moonrepo/cli": "^1.22.2",
"@nanostores/logger": "^0.2.4",
"@parcel/watcher": "^2.4.1",
"@sindresorhus/slugify": "^2.2.1",
"@size-limit/file": "^11.0.2",
Expand Down
3 changes: 1 addition & 2 deletions src/components/ui/sheet/SheetContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
DialogPortal,
useForwardPropsEmits,
} from 'radix-vue'
import { X } from 'lucide-vue-next'
import { type SheetVariants, sheetVariants } from '.'
import { cn } from '~/lib/utils'
Expand Down Expand Up @@ -46,7 +45,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
<DialogClose
class="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary"
>
<X class="h-4 w-4 text-muted-foreground" />
<span class="i-lucide-x h-4 w-4 text-muted-foreground" />
</DialogClose>
</DialogContent>
</DialogPortal>
Expand Down
3 changes: 0 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { createApp } from 'vue'
import './assets/index.css'
import { devtools } from '@nanostores/vue/devtools'
import urql from '@urql/vue'
import { parseToRgb, toColorString } from 'polished'
import { createRouter, createWebHistory } from 'vue-router'
import App from './App.vue'
import { $config } from './stores/config'
import NoopVue from './components/Noop.vue'

window.SP_PAYWALL = {
Expand Down Expand Up @@ -39,7 +37,6 @@ const router = createRouter({
],
})

app.use(devtools, { $config })
app.use(router)
app.use(urql, createClientOptions(window.SP_PAYWALL.clientId))

Expand Down
10 changes: 0 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2188,15 +2188,6 @@ __metadata:
languageName: node
linkType: hard

"@nanostores/logger@npm:^0.2.4":
version: 0.2.4
resolution: "@nanostores/logger@npm:0.2.4"
peerDependencies:
nanostores: ">=0.9.2"
checksum: 10c0/4aacd4b60a41340ffb705ea0970fdb4fd48cc527761b7fbe3f42b142afc14a12e469feec88c2d132bd23f887de7fa10516dd3d01dd82fe50ff6ad15c47a954f8
languageName: node
linkType: hard

"@nanostores/persistent@npm:^0.10.1":
version: 0.10.1
resolution: "@nanostores/persistent@npm:0.10.1"
Expand Down Expand Up @@ -2621,7 +2612,6 @@ __metadata:
"@graphql-codegen/client-preset": "npm:4.2.4"
"@iconify-json/lucide": "npm:^1.1.169"
"@moonrepo/cli": "npm:^1.22.2"
"@nanostores/logger": "npm:^0.2.4"
"@nanostores/persistent": "npm:^0.10.1"
"@nanostores/vue": "npm:^0.10.0"
"@parcel/watcher": "npm:^2.4.1"
Expand Down

0 comments on commit f276472

Please sign in to comment.