You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
#!/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')
|
|
|