* Use plain js to do the pre/postpublish for the polyfill * remove dist on clean [skip ci]
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
var fs = require("fs");
|
|
var path = require("path");
|
|
|
|
try {
|
|
fs.unlinkSync(path.join(__dirname, "../browser.js"));
|
|
} catch (err) {}
|
|
|