ipsos-components
Version:
Material Design components for Angular
13 lines (9 loc) • 319 B
text/typescript
import {task} from 'gulp';
import {yellow} from 'chalk';
task('default', ['help']);
task('help', function() {
console.log();
console.log('Please specify a gulp task you want to run.');
console.log(`You're probably looking for ${yellow('test')} or ${yellow('serve:devapp')}.`);
console.log();
});