serverless-webpack
serverless-webpack copied to clipboard
Yarn resolution not updated using file:
I have the following:
.
├── blankModule
│ ├── blank.js
│ └── package.json
├── jest.config.js
├── node_modules
├── package.json
├── src
├── webpack.config.js
└── yarn.lock
// package.json
{
// ...
"resolutions": {
"blank": "file:./blankModule"
}
}
$ yarn serverless webpack --out .webpack
// .webpack/dependencies/package.json
{
// ...
"resolutions": {
"blank": "file:./blankModule" // Should be updated to "file:../../blankModule"
}
}
I see from the readme that local-modules are supported and I'm seeing the resolution is copied but does not seem updated :thinking: