File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ branches:
26
26
cache :
27
27
directories :
28
28
- " $HOME/.mongodb/versions"
29
- after_script : " ./node_modules/.bin/codecov"
29
+ after_script :
30
+ - bash <(curl -s https://codecov.io/bash)
30
31
deploy :
31
32
provider : npm
32
33
email :
Original file line number Diff line number Diff line change 19
19
"license" : " BSD-3-Clause" ,
20
20
"dependencies" : {
21
21
"babel-polyfill" : " 6.13.0" ,
22
- "babel-runtime" : " 6.11.6" ,
23
22
"bcrypt-nodejs" : " 0.0.3" ,
24
23
"body-parser" : " 1.15.2" ,
25
- "colors" : " 1.1.2" ,
26
24
"commander" : " 2.9.0" ,
27
25
"deepcopy" : " 0.6.3" ,
28
26
"express" : " 4.14.0" ,
41
39
"pg-promise" : " 5.2.7" ,
42
40
"redis" : " 2.6.2" ,
43
41
"request" : " 2.74.0" ,
44
- "request-promise" : " 4.1.1" ,
45
42
"semver" : " 5.2.0" ,
46
43
"tv4" : " 1.2.7" ,
47
44
"winston" : " 2.2.0" ,
56
53
"babel-preset-es2015" : " 6.13.2" ,
57
54
"babel-preset-stage-0" : " 6.5.0" ,
58
55
"babel-register" : " 6.11.6" ,
59
- "codecov" : " 1.0.1" ,
60
56
"cross-env" : " 2.0.0" ,
61
57
"deep-diff" : " 0.3.4" ,
62
58
"gaze" : " 1.1.1" ,
63
59
"istanbul" : " 1.0.0-alpha.1" ,
64
60
"jasmine" : " 2.4.1" ,
65
61
"mongodb-runner" : " 3.3.2" ,
66
- "nodemon" : " 1.10.0"
62
+ "nodemon" : " 1.10.0" ,
63
+ "request-promise" : " ^4.1.1"
67
64
},
68
65
"scripts" : {
69
66
"dev" : " npm run build && node bin/dev" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { ParseServer } from '../index';
4
4
import definitions from './cli-definitions' ;
5
5
import program from './utils/commander' ;
6
6
import { mergeWithOptions } from './utils/commander' ;
7
- import colors from 'colors' ;
8
7
9
8
program . loadDefinitions ( definitions ) ;
10
9
@@ -44,7 +43,7 @@ if (!options.serverURL) {
44
43
if ( ! options . appId || ! options . masterKey || ! options . serverURL ) {
45
44
program . outputHelp ( ) ;
46
45
console . error ( "" ) ;
47
- console . error ( colors . red ( "ERROR : appId and masterKey are required" ) ) ;
46
+ console . error ( '\u001b[31mERROR : appId and masterKey are required\u001b[0m' ) ;
48
47
console . error ( "" ) ;
49
48
process . exit ( 1 ) ;
50
49
}
You can’t perform that action at this time.
0 commit comments