prepublish.js 216 Bytes
var fs = require("fs");
var path = require("path");

function relative(loc) {
  return path.join(__dirname, "..", loc);
}

fs.writeFileSync(relative("browser.js"), fs.readFileSync(relative("dist/polyfill.min.js")));