reacthtmlpack
Version:
Added the missing piece of treating `index.html` as entry point in webpack bundles.
16 lines (11 loc) • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.readFileAsContent = readFileAsContent;
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
var _fs = require("fs");
var _fs2 = _interopRequireDefault(_fs);
function readFileAsContent(filepath) {
return _fs2["default"].readFileSync(filepath, "utf8").trim(); // trim to remove the newline before EOF
}