File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
- add --tasks-simple flag for plaintext task listings
7
7
- updated autocomplete scripts to be simpler and use new --tasks-simple flag
8
8
- added support for transpilers via liftoff 0.11 and interpret
9
+ - just npm install your compiler (coffee-script for example) and it will work out of the box
9
10
10
11
# 3.5.5
11
12
Original file line number Diff line number Diff line change @@ -25,11 +25,13 @@ var versionFlag = argv.v || argv.version;
25
25
var tasksFlag = argv . T || argv . tasks ;
26
26
var tasks = argv . _ ;
27
27
var toRun = tasks . length ? tasks : [ 'default' ] ;
28
+
28
29
// this is a hold-over until we have a better logging system
29
30
// with log levels
30
31
var simpleTasksFlag = argv [ 'tasks-simple' ] ;
31
32
var shouldLog = ! argv . silent && ! simpleTasksFlag ;
32
33
34
+ // wire up a few err listeners to liftoff
33
35
cli . on ( 'require' , function ( name ) {
34
36
if ( ! shouldLog ) return ;
35
37
gutil . log ( 'Requiring external module' , chalk . magenta ( name ) ) ;
@@ -46,6 +48,7 @@ cli.launch({
46
48
completion : argv . completion
47
49
} , handleArguments ) ;
48
50
51
+ // the actual logic
49
52
function handleArguments ( env ) {
50
53
if ( versionFlag ) {
51
54
gutil . log ( 'CLI version' , cliPackage . version ) ;
Original file line number Diff line number Diff line change 35
35
"pretty-hrtime" : " ^0.2.0" ,
36
36
"semver" : " ^2.2.1" ,
37
37
"tildify" : " ^0.2.0" ,
38
- "vinyl-fs" : " ^0.1.3 "
38
+ "vinyl-fs" : " ^0.2.0 "
39
39
},
40
40
"devDependencies" : {
41
41
"mocha" : " ^1.17.0" ,
42
42
"mocha-lcov-reporter" : " ^0.0.1" ,
43
43
"coveralls" : " ^2.7.0" ,
44
44
"istanbul" : " ^0.2.3" ,
45
- "should" : " ^3.1 .0" ,
45
+ "should" : " ^4.0 .0" ,
46
46
"rimraf" : " ^2.2.5" ,
47
47
"q" : " ^1.0.0" ,
48
48
"jshint" : " ^2.5.0" ,
You can’t perform that action at this time.
0 commit comments