Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Buildable file is not exposed (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl88 authored and haroldiedema committed Jul 10, 2018
1 parent a08ac5d commit a4159f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Builder/js/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,11 @@ function compileFile(buildableFile, config, logger) {
);
}

resolve(require(steps[j])(file, config, (file) => compileFile(file, config, logger)));
resolve(require(steps[j])(
file,
config,
(file) => compileFile(new BuildableFile(file), config, logger)
));
} catch (err) {
reject(err);
}
Expand Down

0 comments on commit a4159f6

Please sign in to comment.