Skip to content

Commit d27602d

Browse files
author
Kenton Powell
committed
add port message to build complete
1 parent 2b2fab3 commit d27602d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 0.6.0
44

5-
* Gracefulify `fs`, to avoid issues on Windows ([#15](https://github.com/gobblejs/gobble-cli/pull/15))
5+
* Gracefully `fs`, to avoid issues on Windows ([#15](https://github.com/gobblejs/gobble-cli/pull/15))
66
* Update dependencies
77

88
## 0.5.0
@@ -30,7 +30,7 @@
3030
* Expect locally-installed gobble version to be 0.9.0 or greater
3131
* Squelch duplicate messages
3232
* Respect terminal width better when printing messages
33-
* `gobble --help` now inludes `gobble watch`
33+
* `gobble --help` now includes `gobble watch`
3434
* Very long messages are truncated
3535
* Display `inputdir` and `outputdir` for easier debugging, if these are provided in error messages
3636
* Prevent builds from hanging (regression with gobble 0.9.0)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ gobble build out -f
4545

4646
### Build to a specific folder, and watch for changes
4747

48-
Like `gobble build`, except that the build will be updated whenver the source files change.
48+
Like `gobble build`, except that the build will be updated whenever the source files change.
4949

5050
```bash
5151
gobble watch out

lib/utils/logger.js

+2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ messages = {
105105
BUILD_COMPLETE: function ( x ) {
106106
var result = ( x.dest ? 'built to ' + chalk.bold( x.dest ) : 'build completed' ) + ' in ' + chalk.bold( x.duration + 'ms' );
107107

108+
info( 'server listening on port ' + chalk.bold( x.port ) );
109+
108110
if ( x.watch ) {
109111
result += '. Listening for changes...\n';
110112
}

0 commit comments

Comments
 (0)