Skip to content

Commit 04dfeec

Browse files
author
Homme Zwaagstra
committed
Explicitly state that the package doesn't yet work with Node 0.12
1 parent 81a6b61 commit 04dfeec

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ matrix:
1616
fast_finish: true
1717
# allow unstable versions to fail
1818
allow_failures:
19+
- node_js: "0.12"
1920
- node_js: "0.13"
2021
- env: MAPSERVER_COMMIT=
2122
before_install:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ passed to a callback):
164164
patches welcome!). Although not currently supported, the module has been
165165
built successfully on Windows - see `WINDOWS-INSTALL.md` for more details.
166166

167-
* Node.js >=0.10
167+
* Node.js 0.10 (Not yet working with 0.12)
168168

169169
* Mapserver >= 6.2. If you are using `Map.FromString` ensure that you are using
170170
Mapserver >= 6.2.1 or alternatively you have applied

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"main": "lib/mapserv.js",
1515
"engines": {
16-
"node": ">=0.10"
16+
"node": ">=0.10 <0.11"
1717
},
1818
"scripts": {
1919
"test": "vows --spec ./test/mapserv-test.js"

0 commit comments

Comments
 (0)