express-typescript-boilerplate icon indicating copy to clipboard operation
express-typescript-boilerplate copied to clipboard

Upgrade depdencies

Open YonatanCatav opened this issue 3 years ago • 2 comments

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

YonatanCatav avatar Nov 21 '21 22:11 YonatanCatav

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 avatar Jan 06 '23 00:01 pavlobu

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

pavlobu avatar Jan 06 '23 00:01 pavlobu