Skip to content

Commit

Permalink
(add) 'use strict'
Browse files Browse the repository at this point in the history
  • Loading branch information
jstty committed Jul 23, 2016
1 parent f56fced commit f4de9a5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# beelzebub
One hell of a task master!
# Beelzebub - One hell of a task master!
==========================
[![Build Status](https://secure.travis-ci.org/jstty/beelzebub.png?branch=master)](http://travis-ci.org/jstty/beelzebub)
[![bitHound Score](https://www.bithound.io/github/jstty/beelzebub/badges/score.svg?branch=master)](https://www.bithound.io/github/jstty/beelzebub)
Expand All @@ -16,6 +15,7 @@ Hightly modular promise/genorator based build task pipeline, compatiable with gu
Easy to create modular tasks and import tasks using npm.

# TODO
* [ ] CLI tests
* [ ] gulp.util type utils? like logging, transfuser
* [ ] add hotfoot
* Add string libs
Expand Down
2 changes: 2 additions & 0 deletions bin/beelzebub
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env node
'use strict';

const _ = require('lodash');
const path = require('path');
const cli = require('commander');
Expand Down
2 changes: 1 addition & 1 deletion examples/api/_ES7_decorator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict'
'use strict';

var Beelzebub = require('../../');
Beelzebub({
Expand Down
2 changes: 2 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const _ = require('lodash');
const co = require('co');
const streamToPromise = require('stream-to-promise');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beelzebub",
"version": "0.6.0",
"version": "0.6.1",
"description": "One hell of a task master!",
"main": "index.js",
"bin": {
Expand Down
4 changes: 3 additions & 1 deletion test/examples/tests.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

var _ = require('lodash');
var path = require('path');
var Stumpy = require('stumpy');
Expand All @@ -21,7 +23,7 @@ _.forEach(list, function(testList, item){
describe(item, function() {
this.timeout(timeoutSec * 1000);

å // iterate over all tests in group
// iterate over all tests in group
_.forEach(testList, function(appName, name) {

describe(name, function() {
Expand Down

0 comments on commit f4de9a5

Please sign in to comment.