Daniel Gustaw
Daniel Gustaw
@code-farmer-i I am using `2.3.15`, please accept and release new version. This not break backward compatibility and fixing this problem. https://github.com/code-farmer-i/vue-markdown-editor/pull/238/files
I have `Cannot find module 'bluebird'` details: ``` node:internal/modules/cjs/loader:1039 const err = new Error(message); ^ Error: Cannot find module 'bluebird' Require stack: - /home/daniel/exp/rabbit-mq-haredo/node_modules/haredo/dist/consumer.js - /home/daniel/exp/rabbit-mq-haredo/node_modules/haredo/dist/haredo.js - /home/daniel/exp/rabbit-mq-haredo/node_modules/haredo/dist/index.js - /home/daniel/exp/rabbit-mq-haredo/src/storeage/rabbit.ts...
But i don't want `bluebird` because in Node js there are native promises. 
I installed `bluebird` manually and now see error `.consume is not a function` ``` /home/daniel/exp/rabbit-mq-haredo/src/consumer.ts:5 .consume(async (message) => { ^ TypeError: import_rabbit.rabbit.queue(...).bindExchange(...).consume is not a function at (/home/daniel/exp/rabbit-mq-haredo/src/consumer.ts:5:6) at Object....
but `QueueChain` does not have `consume` method. There is `QueueChain` interface ``` export interface QueueChain extends GeneralChainMembers QueueChain>, QueuePublishMethod { /** * Return the state of the chain for inspection...
I installed `"@types/amqplib": "^0.10.1",` and now consumer is fixed ``` rabbit.queue('my-queue') .bindExchange('my-exchange', '#', 'topic', { durable: false }) // Can be omitted if you don't want to bind the queue...
IMHO this should be merged because it is blocking for installation on mac now.
There is similar problem: https://stackoverflow.com/questions/62703814/futurewarning-arrays-to-stack-must-be-passed-as-a-sequence-type-such-as-list There is issue with the same problem: https://github.com/emkademy/jumpcutter/issues/26 my numpy version ``` numpy 2.1.1 ```
Potentially these problems can be connected with old https://zulko.github.io/moviepy/ version, 1.0.3 but 2.0.0 is not released officially yet. https://github.com/Zulko/moviepy/pull/2024 There is releases history: https://pypi.org/project/moviepy/#history
version of moviepy was ok, i fixed in https://github.com/emkademy/jumpcutter/pull/31 thanks to https://github.com/Zulko/moviepy/issues/2025#issuecomment-1767953504