Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Oct 11, 2024
1 parent f70dfb0 commit f90a4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/sage-monorepo/nx-plugin/src/plugins/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { buildProjectConfiguration } from './build-project-configuration';
import { ProjectConfigurationBuilderOptions } from './project-configuration-builder-options';
import { inferProjectMetadata } from './project-metadata';

function readProjectCOnfigurationsCache(
function readProjectConfigurationsCache(
cachePath: string,
): Record<string, SageMonorepoProjectConfiguration> {
// console.log(`cachePath: ${cachePath}`);
Expand All @@ -44,7 +44,7 @@ export const createNodesV2: CreateNodesV2<SageMonorepoPluginOptions> = [

// Reads the cached targets for all the projects
const cachePath = join(workspaceDataDirectory, `sage-monorepo-${optionsHash}.hash`);
const projectConfigurationsCache = readProjectCOnfigurationsCache(cachePath);
const projectConfigurationsCache = readProjectConfigurationsCache(cachePath);
try {
return await createNodesFromFiles(
(configFile, options, context) => {
Expand Down

0 comments on commit f90a4a8

Please sign in to comment.