get rid of 0.11
This commit is contained in:
parent
36a933375b
commit
6563e6ac3d
3 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@ ifeq ($(findstring io.js, $(shell which node)),)
|
|||
endif
|
||||
|
||||
ifeq (node, $(BIN))
|
||||
FLAGS = --harmony-generators
|
||||
FLAGS = --harmony
|
||||
endif
|
||||
|
||||
REQUIRED = --require should --require should-http
|
||||
|
|
|
@ -21,7 +21,7 @@ $ npm install koa
|
|||
|
||||
Koa is supported in all versions of [iojs](https://iojs.org) without any flags.
|
||||
|
||||
To use Koa with node, you must be running __node 0.11.16__ or higher for generator and promise support, and must run node(1)
|
||||
To use Koa with node, you must be running __node 0.12.0__ or higher for generator and promise support, and must run node(1)
|
||||
with the `--harmony-generators` or `--harmony` flag.
|
||||
|
||||
## Community
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"test-console": "^0.7.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.11.16",
|
||||
"node": ">= 0.12.0",
|
||||
"iojs": ">= 1.0.0"
|
||||
},
|
||||
"files": [
|
||||
|
|
Loading…
Reference in a new issue