From 8524df013abff9ba93481e60f431e0574d083868 Mon Sep 17 00:00:00 2001 From: sercan Date: Wed, 19 May 2021 10:57:40 +0300 Subject: [PATCH] (fuse/tailwind) Fixed: Barrel exports are wrong for FuseTailwindService --- src/@fuse/services/tailwind/index.ts | 2 +- src/@fuse/services/tailwind/public-api.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@fuse/services/tailwind/index.ts b/src/@fuse/services/tailwind/index.ts index b2dad0cb..2efe083b 100644 --- a/src/@fuse/services/tailwind/index.ts +++ b/src/@fuse/services/tailwind/index.ts @@ -1 +1 @@ -export * from '@fuse/services/media-watcher/public-api'; +export * from '@fuse/services/tailwind/public-api'; diff --git a/src/@fuse/services/tailwind/public-api.ts b/src/@fuse/services/tailwind/public-api.ts index fd5905d7..3eeb3757 100644 --- a/src/@fuse/services/tailwind/public-api.ts +++ b/src/@fuse/services/tailwind/public-api.ts @@ -1,2 +1,2 @@ -export * from '@fuse/services/media-watcher/media-watcher.module'; -export * from '@fuse/services/media-watcher/media-watcher.service'; +export * from '@fuse/services/tailwind/tailwind.module'; +export * from '@fuse/services/tailwind/tailwind.service';