W72crm_web-master/node_modules/node-sass/scripts/prepublish.js

18 lines
245 B
JavaScript
Raw Permalink Normal View History

2025-05-27 11:25:53 +08:00
/*!
* node-sass: scripts/install.js
*/
var path = require('path'),
rimraf = require('rimraf');
function prepublish() {
var vendorPath = path.resolve(__dirname, '..', 'vendor');
rimraf.sync(vendorPath);
}
/**
* Run
*/
prepublish();