Skip to content

Commit

Permalink
fix(list-module-callers): trim spaces (#2247)
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke authored Jan 17, 2025
1 parent e7fef38 commit 709609e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/src/list-module-callers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import { buildModuleToCallers, resolveRelativeCallTree } from "./lib";
export const main = async () => {
const configFiles = fs
.readFileSync(core.getInput("config_files"), "utf8")
.trim()
.split("\n");
const moduleFiles = fs
.readFileSync(core.getInput("module_files"), "utf8")
.trim()
.split("\n");

// directory where uses modules => used modules
Expand Down

0 comments on commit 709609e

Please sign in to comment.