Craigory Coppola

Results 130 comments of Craigory Coppola

Its possibly unrelated, but it looks like storybook is a bit behind in your repo. Can you try running `nx migrate @nrwl/[email protected]`

That's interesting too, but the workspace layout is determined by a property in `nx.json`. Ideally, we should read `nx.json` to determine the apps/libs folders when creating this file. `@nrwl/devkit` exports...

There is a different strategy to this that I've thought of that would match typical Nx dist output better. If we could represent `${workspaceRoot}/dist/${projectRoot}` in the Directory.Build.Props file than that...

Nx operates on the project level, and for the most part our executors simply wrap the dotnet cli without adding functionality (except that they run through Nx). We don't add...

Its a slightly different problem domain, but pretty similar solution space. As an aside, for specifically this problem, we don't do anything related to parsing the C# AST or trying...

Since primary purpose is for generating TS interfaces for API results, look into using swagger.json from APIs. https://github.com/domaindrivendev/Swashbuckle.AspNetCore#retrieve-swagger-directly-from-a-startup-assembly

I would now split this task into two parts. One will be an executor in @nx-dotnet/core, and the other in @nx-dotnet/typescript. The executor should be something like `nx build-swagger some-web-api`...

A minimalist version of the generator could only do steps 1-4 and be "done", later we could enhance it with the refactoring / ast work. For steps 1-4, you'd just...

I don't think so, since the regular Nx move generator doesn't. It could be added perhaps, but I'm not sure how I'd design it in terms of schema