Skip to content

Commit

Permalink
Merge pull request #39 from UFGInsurance/feature/dataweave-flexible-f…
Browse files Browse the repository at this point in the history
…older-name

Allow more flexibility in DataWeave folder name
  • Loading branch information
TrueWill authored Nov 6, 2018
2 parents ee505b3 + e124758 commit 20f6af1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion folderParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const folderParser = apiBasePath => {
"api.Development.properties"
);
const log4jFile = path.join(resourcesFolder, "log4j2.xml");
const dataWeaveFiles = glob.sync(path.join(resourcesFolder, "dwl", "*.dwl"));
const dataWeaveFiles = glob.sync(path.join(resourcesFolder, "**", "*.dwl"));

if (!fs.existsSync(projectFolder)) {
error.fatal(`Project folder "${projectFolder}" not found`);
Expand Down
2 changes: 1 addition & 1 deletion mulint.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const validateDataWeaveFiles = require("./validateDataWeaveFiles");
const assert = require("./assert");

program
.version("1.3.1")
.version("1.4.0")
.description("Mule project linter")
.arguments("<apiBasePath>")
.on("--help", () => {
Expand Down

0 comments on commit 20f6af1

Please # to comment.