realm-js/scripts/install.js

29 lines
881 B
JavaScript

/* eslint-disable no-console */
'use strict';
var spawn = require('child_process').spawn;
var isReactNative = false;
try {
require.resolve('react-native');
// If the above opeation didn't throw, this project has react native as a dependency.
isReactNative = true;
} catch(e) {}
// Not a React Native install. Must be either Node or Electron.
var isNode = !isReactNative;
if (isNode) {
if (process.platform === 'win32') {
console.error('ERROR: Realm is not yet supported on Windows');
process.exit(-1);
}
// Execute "node-pre-gyp install --fallback-to-build
var pregyp = spawn('node-pre-gyp', ['install', '--fallback-to-build']);
pregyp.stdout.on('data', function (data) { console.log(data.toString()); });
pregyp.stderr.on('data', function (data) { console.error(data.toString()); });
pregyp.on('exit', function (code) { process.exit(code); });
}