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) • 456 B
JavaScript
import {info, nl} from '../utils/log.mjs';
import {packagesList} from './packages.mjs';
import {run} from './run.mjs';
nl(1);
info(' ############################################### ');
info(` # 🔎 Pipeline Step: Watch # `);
info(' ############################################### ');
nl(1);
try {
packagesList.forEach(pkg => {
run(`yarn workspace ${pkg.devName} watch`);
});
} catch (_error) {
process.exit(1);
}