From e388b76ce5cd38bb6d155f492960b1bafc0c6047 Mon Sep 17 00:00:00 2001 From: Francesco Torchia Date: Fri, 7 Jun 2024 09:41:17 +0200 Subject: [PATCH] Fix shell config imports Signed-off-by: Francesco Torchia --- .gitignore | 3 +++ pkg/harvester/babel.config.js | 2 +- pkg/harvester/dialog/HarvesterSupportBundle.vue | 2 +- pkg/harvester/vue.config.js | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cfe21939..2212a6b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ dev lint +# rancher shell +.shell + # compiled output /dist /dist-pkg diff --git a/pkg/harvester/babel.config.js b/pkg/harvester/babel.config.js index 9e5b6e29..fe97df73 100644 --- a/pkg/harvester/babel.config.js +++ b/pkg/harvester/babel.config.js @@ -1 +1 @@ -module.exports = require('@shell/pkg/babel.config.js'); +module.exports = require('@rancher/shell/pkg/babel.config'); diff --git a/pkg/harvester/dialog/HarvesterSupportBundle.vue b/pkg/harvester/dialog/HarvesterSupportBundle.vue index cbb94bad..e18a4d42 100644 --- a/pkg/harvester/dialog/HarvesterSupportBundle.vue +++ b/pkg/harvester/dialog/HarvesterSupportBundle.vue @@ -5,7 +5,7 @@ import { LabeledInput } from '@components/Form/LabeledInput'; import AsyncButton from '@shell/components/AsyncButton'; import GraphCircle from '@shell/components/graph/Circle'; import { Banner } from '@components/Banner'; -import AppModal from '@shell/components/AppModal.vue'; +import AppModal from '@shell/components/AppModal'; import { HCI } from '../types'; export default { diff --git a/pkg/harvester/vue.config.js b/pkg/harvester/vue.config.js index 85934d7a..e3f9b49d 100644 --- a/pkg/harvester/vue.config.js +++ b/pkg/harvester/vue.config.js @@ -1 +1 @@ -module.exports = require('@shell/pkg/vue.config')(__dirname); +module.exports = require('@rancher/shell/pkg/vue.config')(__dirname);