Skip to content

Commit

Permalink
Removed the extra parenthesis from make bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikkel Laursen committed Dec 15, 2016
1 parent b0913db commit 517d218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makeBundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ try {
noAccents.concat(colors).forEach(color => {
colors.forEach(accent => {
if (color !== accent) {
fs.writeFile(path.join(bundles, `${color.replace(('-', '_'))}-${accent.replace(('-', '_'))}.scss`), `
fs.writeFile(path.join(bundles, `${color.replace('-', '_')}-${accent.replace('-', '_')}.scss`), `
@import '../react-md';
$md-primary-color: $md-${color}-500;
Expand Down

0 comments on commit 517d218

Please sign in to comment.