UNPKG

@bincode/jekpack

Version:

[![npm version](https://badge.fury.io/js/%40bincode%2Fjekpack.svg)](https://badge.fury.io/js/%40bincode%2Fjekpack) [![Build Status](https://travis-ci.org/yfxie/jekpack.svg?branch=master)](https://travis-ci.org/yfxie/jekpack) [![codecov](https://codecov.io

10 lines (9 loc) 244 B
const jekyllExec = require('./jekyllExec'); module.exports = async(sourcePath, destPath, args = {}) => { await jekyllExec([ 'build', ...['-s', sourcePath], ...['-d', destPath], ...(args.watch ? ['--watch'] : []), ], {}); };