Skip to content

Commit f16f946

Browse files
committed
Add default task
1 parent bca3954 commit f16f946

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

gulpfile.js

+13
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,19 @@ gulp.task('ghPages', function() {
5252
.pipe(ghPages());
5353
});
5454

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+
5568

5669

5770

0 commit comments

Comments
 (0)