We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca3954 commit f16f946Copy full SHA for f16f946
gulpfile.js
@@ -52,6 +52,19 @@ gulp.task('ghPages', function() {
52
.pipe(ghPages());
53
});
54
55
+gulp.task('default', function() {
56
+ console.log(colors.rainbow('⬤ ================================ ⬤\n'));
57
+ console.log(' AVAILABLE COMMANDS:');
58
+ console.log(' ' + colors.cyan('-------------------\n'));
59
+ console.log(' ' + colors.yellow('npm start') +
60
+ ' — run local server with watcher');
61
+ console.log(' ' + colors.green('npm run build') +
62
+ ' — make build of the project');
63
+ console.log(' ' + colors.cyan('npm run deploy') +
64
+ ' — make build and publish project to Github Pages');
65
+ console.log(colors.rainbow('\n⬤ ================================ ⬤'));
66
+});
67
+
68
69
70
0 commit comments