mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
6d1170f06c
Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: ricky <ricky.miller@gmail.com> Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com> Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> Co-authored-by: legobt <6wbvkn0j@anonaddy.me> Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
45 lines
2.0 KiB
Diff
45 lines
2.0 KiB
Diff
diff --git a/src/init/index.internals.js b/src/init/index.internals.js
|
|
index 7104555c6a436e8727401f688138d2c95e5ab327..7dfe2189e1b5146a40c819b2adcf8e76d5e347b0 100644
|
|
--- a/src/init/index.internals.js
|
|
+++ b/src/init/index.internals.js
|
|
@@ -72,7 +72,7 @@ module.exports = function(options, file, fileContent) {
|
|
|
|
});
|
|
// remove source map comment from source
|
|
- file.contents = new Buffer(sources.content, 'utf8');
|
|
+ file.contents = Buffer.from(sources.content, 'utf8');
|
|
}
|
|
|
|
}
|
|
diff --git a/src/write/index.internals.js b/src/write/index.internals.js
|
|
index 89cee60374e1ff095429a73bb7934767bce35346..adfe8d15d5faddd299c55b01415e554af648530c 100644
|
|
--- a/src/write/index.internals.js
|
|
+++ b/src/write/index.internals.js
|
|
@@ -99,7 +99,7 @@ module.exports = function(destPath, options) {
|
|
|
|
if (destPath === undefined || destPath === null) {
|
|
// encode source map into comment
|
|
- var base64Map = new Buffer(JSON.stringify(sourceMap)).toString('base64');
|
|
+ var base64Map = Buffer.from(JSON.stringify(sourceMap)).toString('base64');
|
|
comment = commentFormatter('data:application/json;charset=' + options.charset + ';base64,' + base64Map);
|
|
} else {
|
|
var mapFile = path.join(destPath, file.relative) + '.map';
|
|
@@ -130,7 +130,7 @@ module.exports = function(destPath, options) {
|
|
|
|
var sourceMapFile = file.clone(options.clone || { deep: false, contents: false });
|
|
sourceMapFile.path = sourceMapPath;
|
|
- sourceMapFile.contents = new Buffer(JSON.stringify(sourceMap));
|
|
+ sourceMapFile.contents = Buffer.from(JSON.stringify(sourceMap));
|
|
sourceMapFile.stat = {
|
|
isFile: function() { return true; },
|
|
isDirectory: function() { return false; },
|
|
@@ -164,7 +164,7 @@ module.exports = function(destPath, options) {
|
|
|
|
// append source map comment
|
|
if (options.addComment) {
|
|
- file.contents = Buffer.concat([file.contents, new Buffer(comment)]);
|
|
+ file.contents = Buffer.concat([file.contents, Buffer.from(comment)]);
|
|
}
|
|
}
|
|
|