Skip to content

Commit 340cccc

Browse files
committed
Change success message of builds
1 parent f92c8b9 commit 340cccc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BUILD/BUILD.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ new compressor.minify({
1111
if (err) {
1212
console.log(err);
1313
} else {
14-
console.log("JS minified");
14+
console.log("JS minified successfully.");
1515
}
1616
}
1717
});
@@ -24,7 +24,7 @@ new compressor.minify({
2424
if (err) {
2525
console.log(err);
2626
} else {
27-
console.log("CSS minified");
27+
console.log("CSS minified successfully.");
2828
}
2929
}
3030
});

0 commit comments

Comments
 (0)