Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indicate a replacement occurred #2

Merged
merged 2 commits into from
Apr 28, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions src/applause.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Applause.prototype.replace = function (contents, process) {
// by default file not updated
var updated = false;
// iterate over each pattern and make replacement
patterns.forEach(function (pattern) {
patterns.forEach(function (pattern, i) {
var match = pattern.match;
var replacement = pattern.replacement;
// wrap replacement function to add process arguments
Expand All @@ -157,8 +157,15 @@ Applause.prototype.replace = function (contents, process) {
};
}
updated = updated || contents.match(match);
contents = contents.replace(match, replacement);
});
var replaced = contents.replace(match, replacement);
// indicate a replacement occurred
if (contents !== replaced) {
if (((this.options || {}).patterns || {})[i]) {
this.options.patterns[i].found = true;
}
contents = replaced;
}
}.bind(this));
if (!updated) {
return false;
}
Expand Down