mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-16 01:27:04 +00:00
commit
ad1c900abf
@ -31,6 +31,9 @@ createMethods(List.prototype, objectTypes.LIST, [
|
||||
'sorted',
|
||||
'snapshot',
|
||||
'isValid',
|
||||
'addListener',
|
||||
'removeListener',
|
||||
'removeAllListeners',
|
||||
]);
|
||||
|
||||
// Mutating methods:
|
||||
|
@ -30,6 +30,9 @@ createMethods(Results.prototype, objectTypes.RESULTS, [
|
||||
'sorted',
|
||||
'snapshot',
|
||||
'isValid',
|
||||
'addListener',
|
||||
'removeListener',
|
||||
'removeAllListeners',
|
||||
]);
|
||||
|
||||
export function createResults(realmId, info) {
|
||||
|
@ -22,6 +22,7 @@ function node_require(module) {
|
||||
return require(module);
|
||||
}
|
||||
|
||||
// If process is defined, we're running in node.
|
||||
function isNode() {
|
||||
return typeof process == 'object' && (('' + process) == '[object process]' || typeof jest == 'object')
|
||||
}
|
||||
@ -32,8 +33,7 @@ function isNode() {
|
||||
|
||||
var realmConstructor;
|
||||
if (isNode()) {
|
||||
// If process is defined, we're running in node.
|
||||
require('./submit-analytics')('Run');
|
||||
node_require('./submit-analytics')('Run');
|
||||
|
||||
// Prevent React Native packager from seeing this module.
|
||||
var binary = node_require('node-pre-gyp');
|
||||
|
@ -108,7 +108,7 @@ trap cleanup EXIT
|
||||
# Use a consistent version of Node if possible.
|
||||
if [ -s "${HOME}/.nvm/nvm.sh" ]; then
|
||||
. "${HOME}/.nvm/nvm.sh"
|
||||
nvm use 4.4.7 || true
|
||||
nvm use 5.12 || true
|
||||
fi
|
||||
|
||||
# Remove cached packages
|
||||
|
Loading…
x
Reference in New Issue
Block a user