mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 10:31:55 -04:00
* feat: running server in the background close #960 * feat: store server can run in the background * fix: update diable to version 4.0.1 * feat(help): add server start/stop to commands list * feat: better info messages about server start
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import diable = require('diable')
|
|
import path = require('path')
|
|
|
|
const pnpm = path.join(__dirname, 'bin', 'pnpm.js')
|
|
|
|
export default () => diable.daemonize(pnpm, ['server', 'start'], {stdio: 'inherit'})
|