Carere
Carere
Explore posts from servers
DDeno
Created by Carere on 10/22/2023 in #help
Organizing dependencies in workspace with several project folder
Suppose you have a workspace with several folder, and in each folder you have a deno project. What is the best solution to handle dependencies for this workspace ? - A single import_map.json at the root of the workspace and each project reference it in their respective deno.json with the importMap property ? - Defining for each project the imports key in their respective deno.json ? - Another option ? Also, what is the best option to play nicely with IDE ? (I'm using Neovim)
3 replies
DDeno
Created by Carere on 9/19/2023 in #help
How can I run `deno test` on all `*.spec.ts` files contains in a specific directory ?
Everything is in the question, it seems very strange that we do not have a pattern option to specify we wanna run all test contains in a directory
2 replies
DDeno
Created by Carere on 9/18/2023 in #help
Pretty new to Deno, what is the recommended way to create a monorepo-like in Deno ?
Everything is in the question. I tried during the entire week-end to get up & running with monorepo-like setup in Deno. My NodeJS monorepo was pretty simplistic: - app ---- 3 projects inside (front, server, and cli) - packages ---- 1 project inside which is used by all 3 mentioned above I don't have any problem with Deno runtime project (eg. CLI, server, etc), Deno delivers perfectly (it's a real pleasure to work with it on those type of project). The real pain reside in FrontEnd with ViteJS. It seems that ViteJs project need to be in it's own root folder, it cannot be a sub-folder. Also, I would like to keep my NX configuration since it does rely on package.json (really helpful in order to avoid building project if nothing has change in it) So my question is, do I waste time trying to use my former knowledge of monorepo ? Do I need to switch my way of thinking (as I did by not using package.json and node_modules) ? Is there somewhere some resource explaining how to proceed to achieve what I'm trying to do ? PS: Please, try to answer with elaborate responses, don't want to be bash for asking questions as a newbie on a new tech 😅
19 replies
DDeno
Created by Carere on 9/14/2023 in #help
Impossible to use `"jsx": "preserve"` in deno.json...
Well it seems that I can't use jsx preserve in deno.json, when I try to run any tasks in deno.json, I get the following error:
error: Unsupported 'jsx' compiler option value 'preserve'. Supported: 'react-jsx', 'react-jsxdev', 'react'
at file:///home/carere/Projects/Ashiso/zentai/deno.json
error: Unsupported 'jsx' compiler option value 'preserve'. Supported: 'react-jsx', 'react-jsxdev', 'react'
at file:///home/carere/Projects/Ashiso/zentai/deno.json
I use Solid-JS in my project, how should I proceed ?
5 replies
DDeno
Created by Carere on 9/14/2023 in #help
Can I use Workers in an executable ?
Everything is in the questions, on the doc site, it is mention that we can't use Workers when creating executable, but then on the page executable, it says that we need to use the --include option in order to add the worker code to the executable. So what is the state of the Workers inside an executable with Deno actually ?
5 replies