Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Nov 10, 2023
1 parent b0326c7 commit f0689d8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/utils/deploy.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,8 @@ export const listSourceFiles = ({
}: {sourceAbsolutePath: string} & Required<Pick<SatelliteConfig, 'ignore'>>): string[] => {
const sourceFiles = files(sourceAbsolutePath);

console.log('Sources', sourceFiles);

const filteredEmptyFiles = sourceFiles.filter((file) => lstatSync(file).size > 0);

console.log('Empty', filteredEmptyFiles);

const filteredSourceFiles = filteredEmptyFiles.filter(
(file) => ignore.find((pattern) => minimatch(file, pattern)) === undefined
);
Expand Down

0 comments on commit f0689d8

Please sign in to comment.