start-write

2.0.2 • Public • Published

start-write

npm linux build windows build coverage deps

Write task for Start.

Install

npm install --save-dev start-write
# or 
yarn add --dev start-write

Usage

import start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import clean from 'start-clean';
import babel from 'start-babel';
import write from 'start-write';
 
export const build= () => start(reporter())(
  files('build/'),
  clean(),
  files('lib/**/*.js'),
  babel({ sourceMaps: true }),
  write('build/')
);

This task relies on [{ path, data, map }] input and provides the same, see documentation for details.

Arguments

write(dir, encoding, sourcemapOptions)

  • dir – output directory, will be created automatically if it doesn't exists
  • encodingfs.writeFile encoding option, utf-8 by default
  • sourcemapOptions – options using to generate Source Maps:
    • extname – sourcemap file extension, '.map' by default
    • prefix – prefix string which will be used to generate sourceMappingURL sourcemap comment, '' by default

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.0.22latest

Version History

VersionDownloads (Last 7 Days)Published
2.0.22
2.0.11
2.0.04
1.2.01
1.1.41
1.1.31
1.1.21
1.1.11
1.1.01
1.0.01
0.1.41
0.1.31
0.1.21
0.1.11
0.1.01

Package Sidebar

Install

npm i start-write

Weekly Downloads

19

Version

2.0.2

License

MIT

Last publish

Collaborators

  • deepsweet