Skip to content

Commit

Permalink
upgrade all packages to latest, run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
acvigue committed Jul 17, 2023
1 parent c3b3eed commit 089eb37
Show file tree
Hide file tree
Showing 7 changed files with 551 additions and 512 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/typography": "^0.5.9",
"@tsconfig/node18": "^2.0.1",
"@tsconfig/node18": "^18.2.0",
"@types/axios": "^0.14.0",
"@types/d3": "^7.4.0",
"@types/node": "^20.1.5",
Expand All @@ -49,11 +49,11 @@
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier": "^3.0.0",
"rollup-plugin-analyzer": "^4.0.0",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"typescript": "~5.0.4",
"typescript": "~5.1.6",
"vite": "^4.3.9",
"vite-plugin-compression": "^0.5.1",
"vite-svg-loader": "^4.0.0",
Expand Down
4 changes: 3 additions & 1 deletion src/assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ body {

.fade-y-enter-active,
.fade-y-leave-active {
transition: opacity 0.3s, transform 0.5s;
transition:
opacity 0.3s,
transform 0.5s;
}

.v-toast--bottom {
Expand Down
6 changes: 5 additions & 1 deletion src/components/modals/LightsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ function rgbToHex(color: number[]) {
name="effect"
label="Light Effect"
v-model="lights.effectID"
@input="(_x: any, node: FormKitNode) => { lights.effectID = node.value as number }"
@input="
(_x: any, node: FormKitNode) => {
lights.effectID = node.value as number
}
"
:options="effects"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/modals/PlaylistModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const emit = defineEmits<{
ghost-class="!bg-gray-600"
item-key="uuid"
>
<template #item="{ element: pattern, index }: { element: Pattern, index: number }">
<template #item="{ element: pattern, index }: { element: Pattern; index: number }">
<div
class="rounded-lg py-2 px-5 w-full bg-gray-700 flex justify-between items-center"
:class="{ 'animate-wiggle': isEditing }"
Expand Down
2 changes: 1 addition & 1 deletion src/views/PatternsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const sortModalOptions = [
:pageSize="10"
class="grid xl:grid-cols-5 lg:grid-cols-4 md:grid-cols-3 grid-cols-2 gap-6"
>
<template v-slot:default="{ item, style }: { item: Pattern, style: StyleValue }">
<template v-slot:default="{ item, style }: { item: Pattern; style: StyleValue }">
<PatternGridItem :item="item" :style="style" @click="showPatternModal(item)" />
</template>
<template v-slot:placeholder="{ style }: { style: StyleValue }">
Expand Down
2 changes: 1 addition & 1 deletion src/views/PlaylistsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const sortModalOptions = [
:pageSize="2"
class="grid xl:grid-cols-5 lg:grid-cols-4 md:grid-cols-3 grid-cols-2 gap-6"
>
<template v-slot:default="{ item, style }: { item: Playlist, style: StyleValue }">
<template v-slot:default="{ item, style }: { item: Playlist; style: StyleValue }">
<PlaylistGridItem :item="item" :style="style" @click="showPlaylistModal(item)" />
</template>
<template v-slot:placeholder="{ style }: { style: StyleValue }">
Expand Down
1,041 changes: 537 additions & 504 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 089eb37

Please sign in to comment.