Skip to content

Commit

Permalink
3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Jun 1, 2014
1 parent 69bb4e0 commit 2ae9741
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- add --tasks-simple flag for plaintext task listings
- updated autocomplete scripts to be simpler and use new --tasks-simple flag
- added support for transpilers via liftoff 0.11 and interpret
- just npm install your compiler (coffee-script for example) and it will work out of the box

# 3.5.5

Expand Down
3 changes: 3 additions & 0 deletions bin/gulp.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ var versionFlag = argv.v || argv.version;
var tasksFlag = argv.T || argv.tasks;
var tasks = argv._;
var toRun = tasks.length ? tasks : ['default'];

// this is a hold-over until we have a better logging system
// with log levels
var simpleTasksFlag = argv['tasks-simple'];
var shouldLog = !argv.silent && !simpleTasksFlag;

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

// the actual logic
function handleArguments(env) {
if (versionFlag) {
gutil.log('CLI version', cliPackage.version);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"pretty-hrtime": "^0.2.0",
"semver": "^2.2.1",
"tildify": "^0.2.0",
"vinyl-fs": "^0.1.3"
"vinyl-fs": "^0.2.0"
},
"devDependencies": {
"mocha": "^1.17.0",
"mocha-lcov-reporter": "^0.0.1",
"coveralls": "^2.7.0",
"istanbul": "^0.2.3",
"should": "^3.1.0",
"should": "^4.0.0",
"rimraf": "^2.2.5",
"q": "^1.0.0",
"jshint": "^2.5.0",
Expand Down

0 comments on commit 2ae9741

Please sign in to comment.