2.0.0 • Published 4 years ago

@start/plugin-remove v2.0.0

Weekly downloads
100
License
MIT
Repository
github
Last release
4 years ago

❌ plugin-remove

Remove files or directories.

Install

$ yarn add --dev @start/plugin-remove

Usage

Example

import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import remove from '@start/plugin-remove'

export const task = () =>
  sequence(
    find('build/'),
    remove,
  )