From acd11dc7ef671df1adc871e1eeb4ff429ad053cd Mon Sep 17 00:00:00 2001 From: Huskydog9988 <39809509+Huskydog9988@users.noreply.github.com> Date: Fri, 9 Jan 2026 12:47:16 -0500 Subject: [PATCH] use nuxt 4 codemod --- {components => app/components}/ConfirmationModal.vue | 0 {components => app/components}/LoadingButton.vue | 0 {components => app/components}/ModalStack.vue | 0 {components => app/components}/ModalTemplate.vue | 0 {components => app/components}/NotificationModal.vue | 0 {components => app/components}/TextInputModal.vue | 0 {composables => app/composables}/modal-stack.ts | 6 +++--- eslint.config.js | 2 +- 8 files changed, 4 insertions(+), 4 deletions(-) rename {components => app/components}/ConfirmationModal.vue (100%) rename {components => app/components}/LoadingButton.vue (100%) rename {components => app/components}/ModalStack.vue (100%) rename {components => app/components}/ModalTemplate.vue (100%) rename {components => app/components}/NotificationModal.vue (100%) rename {components => app/components}/TextInputModal.vue (100%) rename {composables => app/composables}/modal-stack.ts (88%) diff --git a/components/ConfirmationModal.vue b/app/components/ConfirmationModal.vue similarity index 100% rename from components/ConfirmationModal.vue rename to app/components/ConfirmationModal.vue diff --git a/components/LoadingButton.vue b/app/components/LoadingButton.vue similarity index 100% rename from components/LoadingButton.vue rename to app/components/LoadingButton.vue diff --git a/components/ModalStack.vue b/app/components/ModalStack.vue similarity index 100% rename from components/ModalStack.vue rename to app/components/ModalStack.vue diff --git a/components/ModalTemplate.vue b/app/components/ModalTemplate.vue similarity index 100% rename from components/ModalTemplate.vue rename to app/components/ModalTemplate.vue diff --git a/components/NotificationModal.vue b/app/components/NotificationModal.vue similarity index 100% rename from components/NotificationModal.vue rename to app/components/NotificationModal.vue diff --git a/components/TextInputModal.vue b/app/components/TextInputModal.vue similarity index 100% rename from components/TextInputModal.vue rename to app/components/TextInputModal.vue diff --git a/composables/modal-stack.ts b/app/composables/modal-stack.ts similarity index 88% rename from composables/modal-stack.ts rename to app/composables/modal-stack.ts index f68665d..61d612d 100644 --- a/composables/modal-stack.ts +++ b/app/composables/modal-stack.ts @@ -1,7 +1,7 @@ import type { Component } from "vue"; -import ConfirmationModal from "../components/ConfirmationModal.vue"; -import NotificationModal from "../components/NotificationModal.vue"; -import TextInputModal from "../components/TextInputModal.vue"; +import ConfirmationModal from "../../components/ConfirmationModal.vue"; +import NotificationModal from "../../components/NotificationModal.vue"; +import TextInputModal from "../../components/TextInputModal.vue"; export type ModalCallbackType = ( event: ModalEvents[T], diff --git a/eslint.config.js b/eslint.config.js index be2024e..14d83d3 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,3 +1,3 @@ -import withNuxt from './.playground/.nuxt/eslint.config.mjs' +import withNuxt from '.playground/.nuxt/eslint.config.mjs' export default withNuxt()