1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

Fix manifest ref

This commit is contained in:
Adria Navarro 2023-05-22 09:42:43 +02:00
parent 07e0f189bb
commit 3d7af9b2a3

View file

@ -35,7 +35,7 @@ export const getComponentLibraryManifest = async (library: string) => {
const filename = "manifest.json"
if (env.isDev() || env.isTest()) {
const path = join(TOP_LEVEL_PATH, "../client", filename)
const path = join(TOP_LEVEL_PATH, "packages/client", filename)
// always load from new so that updates are refreshed
delete require.cache[require.resolve(path)]
return require(path)