Skip to content

Commit

Permalink
Revert "fix(misc): using normalizePath for tailwindcss config gener…
Browse files Browse the repository at this point in the history
…ation (nrwl#13936)"

This reverts commit 87a6a2d.
  • Loading branch information
FrozenPandaz committed Dec 21, 2022
1 parent 88f860d commit fa21cc5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/workspace/src/utilities/generate-globs.ts
@@ -1,4 +1,4 @@
import { joinPathFragments, logger, normalizePath } from '@nrwl/devkit';
import { joinPathFragments, logger } from '@nrwl/devkit';
import { workspaceRoot } from 'nx/src/utils/workspace-root';
import { dirname, join, relative, resolve } from 'path';
import { readCachedProjectGraph } from 'nx/src/project-graph/project-graph';
Expand Down Expand Up @@ -30,9 +30,7 @@ export function createGlobPatternsForDependencies(
fileGlobPattern: string
): string[] {
let ig = configureIgnore();
const filenameRelativeToWorkspaceRoot = normalizePath(
relative(workspaceRoot, dirPath)
);
const filenameRelativeToWorkspaceRoot = relative(workspaceRoot, dirPath);
const projectGraph = readCachedProjectGraph();
const projectRootMappings = createProjectRootMappings(projectGraph.nodes);

Expand Down

0 comments on commit fa21cc5

Please sign in to comment.