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

14 lines (13 loc) 280 B
const execa = require('execa'); module.exports = (configPath, args = {}) => { try { execa('webpack-dev-server', [ ...['--config', configPath], ], { cwd: process.env.JEKPACK_CONTEXT, stdio: 'inherit', }); } catch (e) { process.exit(1); } };