File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 0.6.0
4
4
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 ) )
6
6
* Update dependencies
7
7
8
8
## 0.5.0
30
30
* Expect locally-installed gobble version to be 0.9.0 or greater
31
31
* Squelch duplicate messages
32
32
* Respect terminal width better when printing messages
33
- * ` gobble --help ` now inludes ` gobble watch `
33
+ * ` gobble --help ` now includes ` gobble watch `
34
34
* Very long messages are truncated
35
35
* Display ` inputdir ` and ` outputdir ` for easier debugging, if these are provided in error messages
36
36
* Prevent builds from hanging (regression with gobble 0.9.0)
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ gobble build out -f
45
45
46
46
### Build to a specific folder, and watch for changes
47
47
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.
49
49
50
50
``` bash
51
51
gobble watch out
Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ messages = {
105
105
BUILD_COMPLETE : function ( x ) {
106
106
var result = ( x . dest ? 'built to ' + chalk . bold ( x . dest ) : 'build completed' ) + ' in ' + chalk . bold ( x . duration + 'ms' ) ;
107
107
108
+ info ( 'server listening on port ' + chalk . bold ( x . port ) ) ;
109
+
108
110
if ( x . watch ) {
109
111
result += '. Listening for changes...\n' ;
110
112
}
You can’t perform that action at this time.
0 commit comments