Skip to content

Commit

Permalink
Corrigir build de recursos
Browse files Browse the repository at this point in the history
  • Loading branch information
dgadelha committed Sep 13, 2024
1 parent 5627553 commit 8dc8411
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/resources/src/helpers/patch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export async function patchHtmlFiles() {

for await (const file of readdirp(topicosDir, {
type: "files",
fileFilter: "*.html",
fileFilter: path => path.basename.endsWith(".html"),
})) {
console.log(`-> Ajustando ${file.path}`);
const fileName = path.join(topicosDir, file.path);
Expand All @@ -77,7 +77,7 @@ export async function patchHtmlFiles() {
export async function patchPortugolFiles() {
for await (const file of readdirp(baseDir, {
type: "files",
fileFilter: "*.por",
fileFilter: path => path.basename.endsWith(".por"),
})) {
console.log(`-> Ajustando ${file.path}`);
const fileName = path.join(baseDir, file.path);
Expand Down

0 comments on commit 8dc8411

Please sign in to comment.