Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Fixed missing file reference
Browse files Browse the repository at this point in the history
Closes #132
  • Loading branch information
Blackbaud-PaulCrowder committed Oct 11, 2016
1 parent 6e7a0b1 commit c12bc5b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.0.0-alpha.8 (2016-10-11)

- Fixed missing file reference (#132)

# 2.0.0-alpha.7 (2016-10-06)

- Fixed issue where the checked state of a checkbox was not properly reflected in the UI (#129)
Expand Down
5 changes: 5 additions & 0 deletions config/utils/stage-ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ function inlineHtmlCss() {

while (matches = regex.exec(fileContents)) {
fileContents = inlineContents(file, fileContents, matches[0], matches[1]);

// Since we're changing the file contents in each iteration and since the regex is stateful
// we need to reset the regex; otherwise it might not be able to locate subsequent matches
// after the first replacement.
regex.lastIndex = 0;
}

fs.writeFileSync(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blackbaud-skyux2",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"description": "SKY UX built on Angular 2",
"author": "Blackbaud, Inc.",
"homepage": "https://github.com/blackbaud/skyux2",
Expand Down

0 comments on commit c12bc5b

Please sign in to comment.