Andrey Bykiev

Results 271 comments of Andrey Bykiev

Is any chance it will be ever fixed?

Hi, `week()` function is locale specific, so you should import your locale before. Here is a [demo ](https://codesandbox.io/s/dayjs-playground-forked-luxioj?file=/src/index.js:0-339) with Russian locale.

I'm not 100% sure, but it seems `dayjs` is using Intl. `Intl` in browsers relys on system time. Can you please check if OS timezone is correct? Related artile: https://www.ghacks.net/2022/09/07/windows-users-in-chile-could-run-into-issues-because-of-daylight-savings-time/

Hi, it seems to be really a bug and build tools most probably will use it as commonJS module. Can you please create a PR to fix it? **Upd:** here...

Hi, I'm not familiar with laravel, but why does `lodash` and `axios` are devDependecies?

Try to move them in dependencies and check if problem is solved

DevDependencies are dependencies that needed only during development. `Moment` (`axios` and `lodash`) should be production dependency

Hi, it seems you have incorrect order of function call. When you calling `utc()` at the end you're getting utc time in your local time zone. Here is a correct...

I believe you should specify [main](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#main) field in package.json

> @BePo65 Currently, we plan to release `next` branch as v3, because refactoring all code is a really heavy task. v2 will only fix supporting ESM. any news when v2...