Я пытаюсь настроить свое окружение для участия в реагирующе-перетаскиваемом модуле реагирования.
У разработчика есть описание в его README.md
, но я застрял на втором этапе:npm run dev
.Это работает make dev
, как он определил в package.json
.
Я получаю такой вывод в консоли:
PS D:\Projekte\module_dev\react-draggable> npm run dev
> react-draggable@3.0.5 dev D:\Projekte\module_dev\react-draggable
> make dev
make i info Invoking dev target
(node:1740) UnhandledPromiseRejectionWarning: undefined
(node:1740) 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(). (rejection id: 1)
(node:1740) [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-$(BIN)
Я также попробовал следующие команды:
- npm install make -g для установки make
- npm install --only = dev установить пакеты, определенные в
devDependencies
в pakage.json
Я работаю в среде Windows 10.
Мне кажется, что make не может разрешить BIN, определенный в Makefile:
export BIN := $(shell npm bin)
У вас есть идея, как я могу продолжить это?Это было бы очень полезно для меня.Спасибо!