How to use the @absolunet/terminal.echo function in @absolunet/terminal

To help you get started, we’ve selected a few @absolunet/terminal examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github absolunet / nwayo / workflow / tasks / default.js View on Github external
gulp.task('default', (cb) => {

	terminal.echo('\n');
	terminal.echo(` ${env.pkg.name} `.bgGreen.bold + `    [${env.name} ${env.workflowPkg.version}]`.yellow);
	terminal.echo('');

	inquirer.prompt([
		{
			name:    'task',
			message: 'Alo! Ki sa ou vle?',
			type:    'list',
			choices: [
				{ name:'Everything',       value:'rebuild' },
				{ name:'Scripts & styles', value:'rebuild-ss' },
				new inquirer.Separator(),
				{ name:'Assets only',      value:'assets' },
				{ name:'Icons only',       value:'icons' },
				{ name:'Scripts only',     value:'scripts' },
				{ name:'Styles only',      value:'styles' },
				{ name:'Local only',       value:'local' }
			]
github absolunet / nwayo / workflow / tasks / default.js View on Github external
], (data) => {
		terminal.echo('\n\n');
		runsequence(data.task, cb);
	});
});
github absolunet / nwayo / workflow / tasks / default.js View on Github external
gulp.task('default', (cb) => {

	terminal.echo('\n');
	terminal.echo(` ${env.pkg.name} `.bgGreen.bold + `    [${env.name} ${env.workflowPkg.version}]`.yellow);
	terminal.echo('');

	inquirer.prompt([
		{
			name:    'task',
			message: 'Alo! Ki sa ou vle?',
			type:    'list',
			choices: [
				{ name:'Everything',       value:'rebuild' },
				{ name:'Scripts & styles', value:'rebuild-ss' },
				new inquirer.Separator(),
				{ name:'Assets only',      value:'assets' },
				{ name:'Icons only',       value:'icons' },
				{ name:'Scripts only',     value:'scripts' },
				{ name:'Styles only',      value:'styles' },
github absolunet / nwayo / workflow / tasks / default.js View on Github external
gulp.task('default', (cb) => {

	terminal.echo('\n');
	terminal.echo(` ${env.pkg.name} `.bgGreen.bold + `    [${env.name} ${env.workflowPkg.version}]`.yellow);
	terminal.echo('');

	inquirer.prompt([
		{
			name:    'task',
			message: 'Alo! Ki sa ou vle?',
			type:    'list',
			choices: [
				{ name:'Everything',       value:'rebuild' },
				{ name:'Scripts & styles', value:'rebuild-ss' },
				new inquirer.Separator(),
				{ name:'Assets only',      value:'assets' },
				{ name:'Icons only',       value:'icons' },
				{ name:'Scripts only',     value:'scripts' },
				{ name:'Styles only',      value:'styles' },
				{ name:'Local only',       value:'local' }