2.0.1 • Published 4 years ago

@start/plugin-write v2.0.1

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

✏️ plugin-write

Write files with source maps to relative destination keeping folders structure.

Install

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

Usage

Signature

write(outDirRelative: string)

Example

import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import read from '@start/plugin-read'
import babel from '@start/plugin-lib-babel'
import write from '@start/plugin-write'

const babelConfig = {
  // …
  babelrc: false,
  sourceMap: true,
}

export const task = () =>
  sequence(
    find('src/**/*.js'),
    read,
    babel(babelConfig),
    write('build/')
  )