I am using storybook library in my react native application but only for development proposesI would like to delete the bundle completely in production from the build folder
my package.jsonthis is how my devDependencies look like
"devDependencies": { ....."@storybook/addon-actions": "^5.3.14","@storybook/addon-links": "^5.3.14","@storybook/addons": "^5.3.14","@storybook/react-native": "^5.3.14","@storybook/react-native-server": "^5.3.14",......}
and this is in the script
"scripts": { ...."storybook": "start-storybook -p 7007",....}
any ideas how to do that ?thank you