Alex Sosnovskiy
Alex Sosnovskiy
Just tested some cases. Seems like a bug with cron-style strings.
@eladni101 As a workaround, I decided to replace cron-style to 'X days/hours/minutes'(humanInterval) string.
You can create empty streams(or empty tracks) to achieve the same result: ```javascript export function createEmptyAudioTrack() { const ctx = new AudioContext(); const oscillator = ctx.createOscillator(); const dst = oscillator.connect(ctx.createMediaStreamDestination());...
Try to recompile module package.json: ```json "meteor": { "mainModule": { "client": "client/main.js", "server": "server/main.js" }, "nodeModules": { "recompile": { "your-esm-module": true } } } ``` More info: https://github.com/meteor/meteor/blob/4442d0e0bf66d890c9dc1bf04f371cfcb82519d7/guide/source/using-npm-packages.md#recompiling-npm-packages
I can't install the latest meteor on my ubuntu server: ``` ghrunner@editor:~$ npm i -g meteor /home/ghrunner/.nvm/versions/node/v14.21.1/bin/meteor-installer -> /home/ghrunner/.nvm/versions/node/v14.21.1/lib/node_modules/meteor/cli.js > [email protected] install /home/ghrunner/.nvm/versions/node/v14.21.1/lib/node_modules/meteor > node cli.js install internal/modules/cjs/loader.js:905 throw err;...
linked issue https://github.com/meteor/meteor/issues/12307
Close issue because no activity.
@benjamn I known that it is about 3 years old topic. But maybe you have any ideas how to do it properly? Any idea about hooks?
Meteor works with es5, ESBuild supports only ES6+.
@filipenevola could you please explain how to properly create symlink for meteor-babel package?