#!/usr/bin/env node import { resolve } from 'path' import parseArgs from 'minimist' import build from '../server/build' const argv = parseArgs(process.argv.slice(2), { alias: { h: 'help' }, boolean: ['h'] }) if (argv.help) { console.log(` Description Compiles the application for production deployment Usage $ next build