#!/usr/bin/env node import {getConfigs} from "./helpers.js"; const {isDev, modulesPath, projectPath, developmentBlockName} = getConfigs(); console.log('----------------------------------\n') console.log('Local Details', process.versions, '\n'); console.log('Configs', { isDev, modulesPath, projectPath, developmentBlockName }); console.log('\n----------------------------------\n')