Preset
A command line tool for kickstarting your application's development by applying presets on top of it.
import { Preset } from 'apply'
// Extracts the preset's templates
Preset.extract()
// Updates the package.json file
Preset.editNodePackages()
.add('tailwindcss', '^2.0')
.remove('sass')
// Runs yarn or npm install
Preset.installDependencies()
npx apply my-username/my-preset