install-module-linked
Version:
Installs and symlinks a module into node_modules
17 lines • 724 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return clear;
}
});
var _fsremovecompat = require("fs-remove-compat");
var _constantsts = require("../constants.js");
function clear(_options) {
(0, _fsremovecompat.safeRmSync)(_constantsts.DEFAULT_CACHE_PATH);
console.log("Cleaned ".concat(_constantsts.DEFAULT_CACHE_PATH));
}
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }