React-Admin: команды `make` не выполняются - PullRequest
1 голос
/ 20 марта 2020

Я пытаюсь заставить мою локальную среду работать после клонирования репозитория react-admin. Я пытался запустить make install и make build в соответствии с документами, но они не будут работать для меня.

Я устанавливаю make глобально. И yarn, npm и nodejs являются современными. Я на Windows-10 использую код Visual Studio с PowerShell терминалом. Вот что я получаю ...

make install возвращает:

make i info Invoking install target
(node:7316) UnhandledPromiseRejectionWarning: undefined
(node:7316) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:7316) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
make × ERR  not found: make-package.json

make build возвращает:

(node:9000) UnhandledPromiseRejectionWarning: undefined
(node:9000) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:9000) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
make × ERR  not found: make-##

Я действительно хочу начать работу с ra fix branch, поэтому любая помощь будет принята с благодарностью. Надеюсь, это просто простая ошибка с моей стороны.

1 Ответ

0 голосов
/ 21 марта 2020

Интересно отметить, что make - это прежде всего утилита для unix env. Поэтому запуск make команд не является прямым процессом в среде windows.

NMAKE является официальной альтернативой windows, которая поможет вам достичь того же.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...