mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-17 20:49:52 -06:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
const shelljs = require('shelljs')
|
|
const { includeTypes } = require('./utils')
|
|
|
|
shelljs.rm('-rf', 'build')
|
|
|
|
includeTypes.map((m) => {
|
|
shelljs.rm('-rf', `types/${m}`)
|
|
})
|