-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ddd generate doesnt work anymore on the latest @nrwl/workspace versions. #123
Comments
hi there i have same error
|
Changing |
I am having the same issue "@nx/workspace": "16.0.1", where did you change this import? I was trying to generate a new domain. I had to change ast-utils path inside the node_modules/@angular-architects/ddd/src/generators/domain/index.js file but now I am having another error => Cannot read properties of undefined (reading 'rules') |
+1 we are going to publish a update for Nx16/Angular 16 soon. |
in node_modules index.ts you can change ast utils import to const ast_utils_1 = require("@nx/workspace/src/utils/ast-utils"); As there are some other problems with nx changing some paths, to be sure maybe it is better to wait for manfreds update. ;) e.g. update-dep-const.js at least for me I was able to generate my domain. |
Any update about the new version with angular 16? thanks! |
Any updates on this? |
ast-utils was moved from @nrwl/workspace to @nrwl/js (Reference: nrwl/nx#15540)
Solution:
node_modules/@angular-architects/ddd/src/generators/utils/addToNgModule.js:5
const ast_utils_1 = require("@nrwl/js/src/utils/typescript/ast-utils");
The text was updated successfully, but these errors were encountered: