We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d6cf3d + a7aa5c6 commit a3c2064Copy full SHA for a3c2064
tasks/util/update_version.js
@@ -11,7 +11,7 @@ module.exports = function updateVersion(pathToFile) {
11
if(isVersionNode(node)) node.update('\'' + pkg.version + '\'');
12
});
13
14
- fs.writeFile(pathToFile, out, function(err) {
+ fs.writeFile(pathToFile, out.toString(), function(err) {
15
if(err) throw err;
16
17
0 commit comments