This repository was archived by the owner on Oct 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11sudo : false
22language : node_js
33node_js :
4- - " 0.10"
5- - " 0.12"
64 - " 4"
75 - " 5"
86 - " 6"
Original file line number Diff line number Diff line change 88
99[ ![ Build Status] ( https://travis-ci.org/getsentry/raven-node.svg?branch=master )] ( https://travis-ci.org/getsentry/raven-node )
1010
11+ ` raven-node ` supports only LTS versions of Node, therefore currently required release is ` >= v4.0.0 ` .
12+ The last known working version for ` v0.10 ` and ` v0.12 ` is ` raven-node@2.1.2 ` .
13+ Please use this version if you need to support those releases of Node.
14+
15+ To see up-to-date Node.js LTS Release Schedule, go to https://github.com/nodejs/LTS .
16+
1117## Resources
1218
1319* [ Documentation] ( https://docs.getsentry.com/hosted/clients/node/ )
Original file line number Diff line number Diff line change 2727 "test-full" : " npm run test && cd test/instrumentation && ./run.sh"
2828 },
2929 "engines" : {
30- "node" : " >= 0.8 .0"
30+ "node" : " >= 4.0 .0"
3131 },
3232 "dependencies" : {
3333 "cookie" : " 0.3.1" ,
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ var fs = require('fs');
33var path = require ( 'path' ) ;
44var child_process = require ( 'child_process' ) ;
55
6- // running on pre-4.0 is hard, somewhat different test scheme
7- if ( process . version < 'v4' ) process . exit ( 0 ) ;
8-
96var nodeRoot = process . argv [ 2 ] ;
107var testRoot = path . join ( nodeRoot , 'test/parallel' ) ;
118var testFiles = fs . readdirSync ( testRoot ) . filter ( function ( filename ) {
You can’t perform that action at this time.
0 commit comments