UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

18 lines (15 loc) 488 B
import {info, nl} from '../utils/log.mjs'; import {packagesList} from './packages.mjs'; import {run} from './run.mjs'; nl(1); info(' ############################################### '); info(` # 🏗️ Pipeline Step: Build # `); info(' ############################################### '); nl(1); try { for (const pkg of packagesList) { await run(`NODE_ENV=production yarn workspace ${pkg.devName} build`); } } catch (_error) { process.exit(1); }