Skip to content

Commit

Permalink
Update assets.ts
Browse files Browse the repository at this point in the history
Trying to solve a conflict
  • Loading branch information
lucasferreira committed Oct 31, 2022
1 parent 3738662 commit 2064c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/remix-dev/compiler/assets.ts
Expand Up @@ -3,7 +3,7 @@ import type * as esbuild from "esbuild";

import type { RemixConfig } from "../config";
import invariant from "../invariant";
import { getRouteModuleExportsCached } from "./routes";
import { getRouteModuleExports } from "./routeExports";
import { getHash } from "./utils/crypto";
import { createUrl } from "./utils/url";

Expand Down Expand Up @@ -94,7 +94,7 @@ export async function createAssetsManifest(
`Cannot get route(s) for entry point ${output.entryPoint}`
);
for (let route of groupedRoute) {
let sourceExports = await getRouteModuleExportsCached(config, route.id);
let sourceExports = await getRouteModuleExports(config, route.id);
routes[route.id] = {
id: route.id,
parentId: route.parentId,
Expand Down

0 comments on commit 2064c57

Please sign in to comment.