Skip to content

Commit

Permalink
Merge pull request #4 from withmandala/dev
Browse files Browse the repository at this point in the history
Compatibility with Node.js v4
  • Loading branch information
Fadhli Dzil Ikram committed Nov 19, 2016
2 parents 46a3fa5 + 5d0c788 commit 89e355d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "6"
- "4"
before_script:
- npm install -g istanbul
script: istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
7 changes: 0 additions & 7 deletions index.d.ts

This file was deleted.

19 changes: 0 additions & 19 deletions lib/setlist.d.ts

This file was deleted.

2 changes: 2 additions & 0 deletions lib/setlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2016 Fadhli Dzil Ikram
*/

'use strict';

const lo = require('lodash');

// Export modules
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": "setlist",
"version": "0.2.0",
"version": "0.2.1",
"description": "Sequential-ish your asynchronous code with ES6 Generator Function and Promise",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions test/setlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @author Fadhli Dzil Ikram
*/

'use strict';

const $ = require('../lib/setlist');
const should = require('should');

Expand Down

0 comments on commit 89e355d

Please sign in to comment.