Alexandre Pineault

Results 2 comments of Alexandre Pineault

Got the same issue in a Windows environment. Fixed it by updating node-gyp using the following command: `npm i node-gyp -g`

Experienced a similar issue with ``` @Entity() export class UserToken { @Column({ default: () => 'uuid_generate_v4()' }) token: string } ``` An alternative syntax exists in this case where the...