asch-redeploy
Version:
A hassle-free local asch environment
18 lines (14 loc) • 379 B
JavaScript
// ctor
let CheckPublicDistDir = function (config, fs, path) {
this.config = config
this.fs = fs
this.path = path
this.createIfNotExistsSync = () => {
// let distDir = path.join(config.node.directory, 'public', 'dist')
// if (fs.existsSync(distDir) === false) {
// fs.mkdirSync(distDir)
// }
return true
}
}
module.exports = CheckPublicDistDir