Jake Ginnivan
Jake Ginnivan
I wrote up a blog post on how we are using TypeScript project references with NX at https://jakeginnivan.medium.com/using-typescript-project-references-in-nx-b3462b2fe6d4 The tl;dr of it is: * We no longer use nrwl's app...
@developer239 I agree with the standardization and minimum quality bar, which is why we created our own plugin set. The goal for us is to only type check *once*, not...
@developer239 totally, I hope that they a look at my solution and consider it for a way forward
> could you elaborate on how you configured VSCode? i am not super familiar with running background tasks and how to make sure VSCode is using the tsc -b --watch...
https://github.com/nrwl/nx/pull/11418 I've got a related PR open here.
Have the same issue. My config file looks like this ``` const getBaseConfig = require('./karma.conf.js') const argv = require('yargs').argv if (!argv.file) { throw new Error('Expected to recieve file argument') }...
Emotion should be a peer dependency IMO. That way it works in nicely with other libraries like ChakraUI See https://github.com/chakra-ui/chakra-ui/blob/main/packages/react/package.json#L65
I have worked around this by using .pnpmfile.cjs (for those using pnpm) ```ts module.exports = { hooks: { readPackage, }, } function readPackage(pkg) { if (pkg.name === 'supertokens-auth-react') { delete...
Part of the reason we chose to support the Jekyll conventions are so we didn't have to reproduce the same doco. Once you understand how Jekyll works (which is well...
@arechsteiner fail point. I have updated the Readme to include a link to the Jekyll getting started page which outlines conventions and such. https://github.com/Code52/pretzel/commit/6fd600461d9f8208b0fd73cb7370c20e21692d18 Cheers! Jake