Storybook has a Node v18 compatibility issue
Although we should address/fix the issue at some point, for now we should specify the compatible Node versions in the package.json.
Then users will be warned when running npm install if they have Node v18 (or Node v14 which is no longer actively supported).
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
I think issue is related to this: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V17.md#openssl-30
@coliff If this will be resolved by https://github.com/trimble-oss/modus-web-components/issues/1143, we can close the issue. What do you think?
I don't mind closing this issue if you want to. I'm fine to keep it open too.
Looks like this issue is now resolved and we are able run with latest node version so closing this. @coliff please reopen if we have to handle anything.
This is related to storybook package.json which still have the specific node version defined so we have to check if the latest storybook upgrade #1143 solves this issue.