File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 133
133
],
134
134
"msvs_settings" : {
135
135
"VCCLCompilerTool" : {
136
- 'ExceptionHandling' : 0 , # /EHsc
137
136
'MultiProcessorCompilation' : 'true' ,
138
137
"AdditionalOptions" : [
139
138
# C++ standard
140
139
"/std:c++<(STANDARD)" ,
140
+
141
+ "/EHsc" # C++ exception handling
141
142
]
142
143
}
143
144
}
Original file line number Diff line number Diff line change 8
8
"build:node" : " node-gyp rebuild" ,
9
9
"build:browser" : " bash -c script/build-browser-version.sh || echo 'the browser build is unsupported'" ,
10
10
"build" : " npm run build:node && npm run build:browser" ,
11
- "test:native" : " node-gyp rebuild --debug --tests && node script/test-native.js" ,
11
+ "test:native" : " node-gyp configure --debug --tests && node-gyp build --debug --tests && node script/test-native.js" ,
12
12
"test:node" : " mocha test/js/*.js" ,
13
13
"test:browser" : " cross-env SUPERSTRING_USE_BROWSER_VERSION=1 mocha test/js/*.js || echo 'the browser tests are unsupported'" ,
14
14
"test" : " npm run test:node && npm run test:native && npm run test:browser" ,
You can’t perform that action at this time.
0 commit comments