Skip to content

Commit 193e7bc

Browse files
committed
provide base and pattern separately
1 parent 98f74f4 commit 193e7bc

File tree

1 file changed

+1
-1
lines changed
  • packages/@tailwindcss-cli/src/commands/build

1 file changed

+1
-1
lines changed

packages/@tailwindcss-cli/src/commands/build/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export async function handle(args: Result<ReturnType<typeof options>>) {
150150
}
151151

152152
// Use the specified root
153-
return [{ base: path.resolve(compiler.root.base, compiler.root.pattern), pattern: '**/*' }]
153+
return [{ base: compiler.root.base, pattern: compiler.root.pattern }]
154154
})().concat(compiler.globs)
155155

156156
let scanner = new Scanner({ sources })

0 commit comments

Comments
 (0)