-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
First, thank you for making this awesome package! πββοΈ
Given this package.json
{
"config": {
"reactStorybookPort": "9001"
},
"scripts": {
"info": "npm-scripts-info",
"?storybook": "Runs react-storybook on port $npm_package_config_reactStorybookPort",
"storybook": "start-storybook -p $npm_package_config_reactStorybookPort -c .storybook"
}
}
Running yarn run storybook
interpolates to start-storybook -p 9001 -c .storybook
, while running yarn run info
displays
storybook:
Runs react-storybook on port $npm_package_config_reactStorybookPort
Do you think we should enable config interpolation in descriptions? Would you like me to look into implementing such a PR?
srph and alvaropinot