How to use the @seagull/libraries.removeFolderRecursive function in @seagull/libraries

To help you get started, we’ve selected a few @seagull/libraries examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github seagull-js / seagull / packages / build / src / services / prepare.ts View on Github external
private deleteDistFolder() {
    const { appFolder } = this.config
    const location = path.join(appFolder, 'dist')
    removeFolderRecursive(location, this.fs)
  }