File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ const connect = require('connect')
99const bodyParser = require ( 'body-parser' )
1010const morgan = require ( 'morgan' )
1111const pug = require ( 'pug' )
12+ const figlet = require ( 'figlet' )
1213
1314require ( 'shelljs/global' )
1415
@@ -61,6 +62,17 @@ function killps(cb) {
6162}
6263
6364function spawn ( ) {
65+ figlet . text ( 'Gon' , {
66+ font : 'univers' ,
67+ } , ( err , data ) => {
68+ if ( err ) {
69+ console . error ( err )
70+ return
71+ }
72+
73+ console . log ( data )
74+ console . log ( 'Okay dokey, ready to work…' )
75+ } )
6476 const gulp = path . join ( __dirname , '../node_modules/gulp-cli/bin/gulp.js' )
6577 const gulpfile = path . join ( __dirname , 'gulpfile.babel.js' )
6678
@@ -104,8 +116,6 @@ function spawn() {
104116 } )
105117
106118 subApp . restart = true
107-
108- console . log ( 'starting app.js' )
109119}
110120
111121function deputy ( req , res , opts ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " Gon" ,
3- "version" : " 0.7.0 " ,
3+ "version" : " 0.7.1 " ,
44 "description" : " yet another f2e build tool" ,
55 "private" : false ,
66 "bin" : {
4545 "eslint-plugin-react" : " 6.8.0" ,
4646 "express" : " 4.14.0" ,
4747 "extract-text-webpack-plugin" : " 2.0.0-beta.4" ,
48+ "figlet" : " 1.2.0" ,
4849 "figlet-cli" : " 0.1.0" ,
4950 "ghooks" : " 1.3.2" ,
5051 "globby" : " 6.1.0" ,
You can’t perform that action at this time.
0 commit comments