Andrés

Results 102 comments of Andrés

This fixed the error ```javascript export enum County { US = 'us', UK = 'uk', DE = 'de', FR = 'fr', IT = 'it', ES = 'es', JP = 'jp',...

Did you created FIRST a custom migration with the enum? ``` drizzle-kit generate --custom ``` ``` CREATE TYPE country AS ENUM ( 'us', 'uk', 'de', 'fr', 'it', 'es', 'jp', 'in',...

> I have tried to run the command, however it generates an empty migration file. That's expected. You have to write the content yourself. ~~Is a bit disgusting to write...

@Maxth47 that was my mistake too! Thanks for looking harder ❤️

I have this in `plugins/copilot.lua` ``` lua return { { "github/copilot.vim", config = function() vim.g['copilot_assume_mapped '] = true vim.g['copilot_no_tab_map'] = true vim.g['copilot_tab_fallback '] = "" end } } ```

@einaralex your Dockerfile made mine at least build successfully 🎉 But dependencies inside the image in `apps/web/node_modules` point to broken symlinks ![image](https://github.com/vercel/turbo/assets/49499/88ffbb93-9cd9-4067-9b96-d3a3825760b1) Those pnpm folders does not exists Looks like...

I manage to make it run adding prop-deps ```diff +FROM installer AS prod-deps +WORKDIR /app +RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile ``` Then ```diff -FROM base AS runner +FROM base...

> I was wondering if you have an example repo working for Firefox I never tried with Firefox. I thought Firefox extensions were not the same. But as I said...

I wrongly open this issue first in [nvim-lap](https://github.com/mfussenegger/nvim-dap/issues/978) and the maintainer kindly redirected me to this project. I hope this is the right place to ask this. After much try...

Many many thanks @alexfedoseev :)