Patrick Wolf
Patrick Wolf
@skydan I would also look at https://github.com/rails/docrails/blob/master/activesupport/lib/active_support/dependencies.rb You can print out what's in Activesupport::Dependency.loaded() and autoloaded_constants() to see if they've even been loaded.
@skydan I can't see the gist
@skydan It's interesting to point out that the files wont be "loaded" until they're needed. Also I would try: ``` /app/models/**/ /app/helpers/**/ /app/presenters/**/ ``` etc
I'm also having this issue, attempting to debug, but I'm not seeing anything obvious. ``` ➜ pnpm nx report > NX Report complete - copy this into the issue template...
I figured it out. I needed to add `"@nrwl/cli"` to my devDependencies main package.json. @richburdon @khaelys