Skip to content

Commit

Permalink
Directories to string method.
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Jul 9, 2024
1 parent 26d26b7 commit 490c02e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Util/ProjectDirectories.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,18 @@ class ProjectDirectories {
},
};
}

toString() {
return {
input: this.input,
inputFile: this.inputFile,
inputGlob: this.inputGlob,
data: this.data,
includes: this.includes,
layouts: this.layouts,
output: this.output,
};
}
}

export default ProjectDirectories;

0 comments on commit 490c02e

Please sign in to comment.