Alyx

Results 453 comments of Alyx

You can have path aliasing in your own project by configuring `exports` in your own package.json The explanation for the different type of moduleResolutions is described here: https://www.typescriptlang.org/tsconfig#moduleResolution If that...

As mentioned in https://github.com/sequelize/sequelize/issues/16866, we also need to update the SSCCE repo's tsconfig

https://github.com/sequelize/sequelize/pull/16101 targets the v7 branch but this documentation is written for v6

Thanks :) Unfortunately your branch was outdated and the changes were made against the old version of the v7 docs, which were recently completely rewritten. Could you look into fixing...

That's a good point. I think it could go as a sub-section of this instead then: https://sequelize.org/docs/v7/associations/belongs-to-many/#customizing-the-junction-table With mentions of set & add that links to the sections about set...

Just v6 for the initial release. I think fixing the archives would be welcomed but not important. I'm re-running the script to know which pages include these broken URLs.

breakdown of broken URLs: ## This URL is a weird one listed in every file generated by esdoc: It's already broken on the existing site - not blocking - https://sequelize-site.netlify.app/api/v6/source.html...

I tried fixing the missing pages in the v6 api reference. It's caused by esdoc failing to parse the new syntax. I tried transpiling the files using esbuild first, but...

My script is available here: https://github.com/ephys/puppeteer-crawler The command I use to check sequelize is: ```bash npm start https://sequelize.org -- --collect-meta=anchors \ --exclude-path='/v{1,2,3,4,5}' \ --exclude-path='/v{1,2,3,4,5}/**/*' \ --exclude-path='/api/**/*' \ --exclude-path='/api' \ --check-externals...

I'm sorry to say none of these are bugs. It's just how setters work ```ts user.setNote = 'Note!'; user.firstName = 'FN'; user = await user.save(); console.log(user.note); // It's "Firstname: Note!"...