I’m trying to use the new version of aurelia-framework with webpack with no luck. I tried theses two methods:
- create a default aurelia-cli with defaults then install aurelia-framework@1.3.0-rc.2.
- create a new project using the aurelia-webpack-plugin from scratch.
in both cases I’m getting this error in the console:
Error: Unable to find module with ID: aurelia-logging-console
did anyone try the new features using webpack.
kinda trick. easiest is to use yarn and add to the package.json
},
"resolutions": {
"**/aurelia-framework": "^1.3.0-rc.2",
"**/aurelia-templating": "^1.8.0-rc.1",
"**/aurelia-binding": "^2.1.0"
},
"peerDependencies": {
1 Like
I would add
"aurelia-templating-router": "^1.3.2",
"aurelia-templating-resources": "1.7.1"
Based on what Doktordirk suggested
"aurelia-templating": "^1.8.0"
1 Like
Nice, no duplicate dependencies too, thanks guys.