Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
update devDependencies and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Jan 27, 2018
1 parent 47e5833 commit ae4af12
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 22 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_js:
- "4"
- "6"
- "8"
- "9"
sudo: false
cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2017 thunks
Copyright (c) 2014-2018 thunks

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -713,8 +713,8 @@ So pay attention to that. **We can't return a non-thunkable function** in thunk.

## License

thunks is licensed under the [MIT](https://github.com/thunks/tman/blob/master/LICENSE) license.
Copyright © 2014-2017 thunks.
thunks is licensed under the [MIT](https://github.com/thunks/thunks/blob/master/LICENSE) license.
Copyright © 2014-2018 thunks.

[npm-url]: https://npmjs.org/package/thunks
[npm-image]: http://img.shields.io/npm/v/thunks.svg
Expand Down
27 changes: 12 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"authors": [
"Yan Qing <admin@zensh.com>"
],
"version": "4.9.0",
"version": "4.9.1",
"main": "./index",
"typings": "index.d.ts",
"jsnext:main": "index.mjs",
Expand All @@ -23,28 +23,25 @@
"flow",
"yield",
"generator",
"coro",
"compose",
"coroutine",
"orchestrate"
"coroutine"
],
"dependencies": {},
"devDependencies": {
"@std/esm": "^0.10.2",
"@types/node": "^8.0.29",
"async": "^2.5.0",
"bluebird": "^3.5.0",
"@std/esm": "^0.19.7",
"@types/node": "^9.4.0",
"async": "^2.6.0",
"bluebird": "^3.5.1",
"co": "^4.6.0",
"istanbul": "^0.4.5",
"jsbench": "^1.1.1",
"promise": "^8.0.1",
"regenerator": "^0.11.0",
"should": "^13.1.0",
"jsbench": "^1.2.0",
"regenerator": "^0.12.3",
"should": "^13.2.1",
"standard": "^10.0.3",
"thenjs": "^2.0.6",
"tman": "^1.7.2",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
"tman": "^1.7.4",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"scripts": {
"test": "standard && tman test/index",
Expand Down
5 changes: 2 additions & 3 deletions test/generator.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
'use strict'

var tman = require('tman')
var should = require('should')
var Promise = global.Promise || require('promise')
const tman = require('tman')
const should = require('should')

module.exports = function (thunks) {
tman.suite('thunk with generator', function () {
Expand Down
1 change: 0 additions & 1 deletion test/thunk.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var tman = require('tman')
var util = require('util')
var should = require('should')
var thenjs = require('thenjs')
var Promise = global.Promise || require('promise')
var x = {}

module.exports = function (thunks) {
Expand Down

0 comments on commit ae4af12

Please sign in to comment.