mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
fa1aa952a6
* ramda
* open
* react-icons
* semver
* uuid
* terser-webpack-plugin
* socketcluster-client
* yarn.lock
* More
* Revert "More"
This reverts commit 84f092b7e0
.
* Fix
* snapshot
95 lines
2.3 KiB
JavaScript
Executable File
95 lines
2.3 KiB
JavaScript
Executable File
#! /usr/bin/env node
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
var argv = require('minimist')(process.argv.slice(2));
|
|
var chalk = require('chalk');
|
|
var injectServer = require('./injectServer');
|
|
var getOptions = require('./../src/options');
|
|
var server = require('../index');
|
|
var openApp = require('./openApp');
|
|
|
|
var options = getOptions(argv);
|
|
|
|
function readFile(filePath) {
|
|
return fs.readFileSync(path.resolve(process.cwd(), filePath), 'utf-8');
|
|
}
|
|
|
|
if (argv.protocol === 'https') {
|
|
argv.key = argv.key ? readFile(argv.key) : null;
|
|
argv.cert = argv.cert ? readFile(argv.cert) : null;
|
|
}
|
|
|
|
function log(pass, msg) {
|
|
var prefix = pass ? chalk.green.bgBlack('PASS') : chalk.red.bgBlack('FAIL');
|
|
var color = pass ? chalk.blue : chalk.red;
|
|
console.log(prefix, color(msg)); // eslint-disable-line no-console
|
|
}
|
|
|
|
function getModuleName(type) {
|
|
switch (type) {
|
|
case 'macos':
|
|
return 'react-native-macos';
|
|
// react-native-macos is renamed from react-native-desktop
|
|
case 'desktop':
|
|
return 'react-native-desktop';
|
|
case 'reactnative':
|
|
default:
|
|
return 'react-native';
|
|
}
|
|
}
|
|
|
|
function getModulePath(moduleName) {
|
|
return path.join(process.cwd(), 'node_modules', moduleName);
|
|
}
|
|
|
|
function getModule(type) {
|
|
var moduleName = getModuleName(type);
|
|
var modulePath = getModulePath(moduleName);
|
|
if (type === 'desktop' && !fs.existsSync(modulePath)) {
|
|
moduleName = getModuleName('macos');
|
|
modulePath = getModulePath(moduleName);
|
|
}
|
|
return {
|
|
name: moduleName,
|
|
path: modulePath,
|
|
};
|
|
}
|
|
|
|
function injectRN(type, msg) {
|
|
var module = getModule(type);
|
|
var fn = type === 'revert' ? injectServer.revert : injectServer.inject;
|
|
var pass = fn(module.path, options, module.name);
|
|
log(
|
|
pass,
|
|
msg +
|
|
(pass
|
|
? '.'
|
|
: ', the file `' +
|
|
path.join(module.name, injectServer.fullPath) +
|
|
'` not found.')
|
|
);
|
|
|
|
process.exit(pass ? 0 : 1);
|
|
}
|
|
|
|
if (argv.revert) {
|
|
injectRN(
|
|
argv.revert,
|
|
'Revert injection of ReduxDevTools server from React Native local server'
|
|
);
|
|
}
|
|
if (argv.injectserver) {
|
|
injectRN(
|
|
argv.injectserver,
|
|
'Inject ReduxDevTools server into React Native local server'
|
|
);
|
|
}
|
|
|
|
server(argv).then(function (r) {
|
|
if (argv.open && argv.open !== 'false') {
|
|
r.on('ready', function () {
|
|
openApp(argv.open, options);
|
|
});
|
|
}
|
|
});
|