w3tecch / express-typescript-boilerplate

A delightful way to building a RESTful API with NodeJs & TypeScript by @w3tecch
MIT License
3.32k stars 903 forks source link

Upgrade depdencies #249

Open YonatanCatav opened 3 years ago

YonatanCatav commented 3 years ago

Upgrading dependencies ⛑️: ☑️bcrypt
☑️class-validator ☑️dataloader ☑️graphql ☑️typedi ☑️typeorm ☑️typeorm-seeding ☑️sqlite ☑️typescript adding docker-compose for running web-server with postgres & postgres admin console ✳️ Tested both with docker & locally on windows 10

pavlobu commented 1 year ago

cool! I ran it locally and finally, it worked. Those outdated dependencies didn't allow me to start this boilerplate locally. But with your pr it worked. Thanks!

pavlobu commented 1 year ago

though I had to do a slight change in order to make yarn setup run smoothly. in ./commands/seed.ts on line 2

import commander from 'commander'; // < --- NEW works import * as commander from 'commander'; // < --- OLD fails with errors in console, that .version() is not defined