Skip to content

Commit 2ae9741

Browse files
author
Contra
committed
3.7
1 parent 69bb4e0 commit 2ae9741

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- add --tasks-simple flag for plaintext task listings
77
- updated autocomplete scripts to be simpler and use new --tasks-simple flag
88
- 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
910

1011
# 3.5.5
1112

bin/gulp.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ var versionFlag = argv.v || argv.version;
2525
var tasksFlag = argv.T || argv.tasks;
2626
var tasks = argv._;
2727
var toRun = tasks.length ? tasks : ['default'];
28+
2829
// this is a hold-over until we have a better logging system
2930
// with log levels
3031
var simpleTasksFlag = argv['tasks-simple'];
3132
var shouldLog = !argv.silent && !simpleTasksFlag;
3233

34+
// wire up a few err listeners to liftoff
3335
cli.on('require', function(name) {
3436
if (!shouldLog) return;
3537
gutil.log('Requiring external module', chalk.magenta(name));
@@ -46,6 +48,7 @@ cli.launch({
4648
completion: argv.completion
4749
}, handleArguments);
4850

51+
// the actual logic
4952
function handleArguments(env) {
5053
if (versionFlag) {
5154
gutil.log('CLI version', cliPackage.version);

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"pretty-hrtime": "^0.2.0",
3636
"semver": "^2.2.1",
3737
"tildify": "^0.2.0",
38-
"vinyl-fs": "^0.1.3"
38+
"vinyl-fs": "^0.2.0"
3939
},
4040
"devDependencies": {
4141
"mocha": "^1.17.0",
4242
"mocha-lcov-reporter": "^0.0.1",
4343
"coveralls": "^2.7.0",
4444
"istanbul": "^0.2.3",
45-
"should": "^3.1.0",
45+
"should": "^4.0.0",
4646
"rimraf": "^2.2.5",
4747
"q": "^1.0.0",
4848
"jshint": "^2.5.0",

0 commit comments

Comments
 (0)