UNPKG

watch-dependency-graph

Version:

[![npm version](https://img.shields.io/npm/v/watch-dependency-graph?style=flat&colorA=4488FF&colorB=4488FF)](https://www.npmjs.com/package/watch-dependency-graph) [![test coverage](https://img.shields.io/coveralls/github/sure-thing/watch-dependency-graph?

16 lines (13 loc) 340 B
const path = require('path') const pkg = require('../package.json') require('esbuild').buildSync({ entryPoints: ['index.ts'], outdir: path.join(__dirname, '../dist'), bundle: true, minify: true, platform: 'node', target: 'node12', sourcemap: 'inline', external: Object.keys(pkg.dependencies || {}), logLevel: 'info', })