chushihua
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
|
||||
var path = require("path");
|
||||
|
||||
module.exports = function readBabelConfig(fileSystem, filename) {
|
||||
if (path.basename(filename) === "package.json") {
|
||||
var pkg = require(filename);
|
||||
|
||||
return JSON.stringify(pkg.babel);
|
||||
}
|
||||
|
||||
// Webpack `fs` return Buffer
|
||||
return fileSystem.readFileSync(filename).toString("utf8");
|
||||
};
|
||||
Reference in New Issue
Block a user