[QA] --test
build
#25695
Replies: 3 comments 2 replies
-
Project: Bitwarden Clients (Angular) The test flag isn't part of the start and build schema. Therefore, adding it as a builder option via angular.json is prohibited. Storybook's Angular builder also doesn't pass the flag further to Storybook's build and dev functions. List of files that need adjustments:
|
Beta Was this translation helpful? Give feedback.
-
start-storybook shouldn't have it @valentinpalkovic |
Beta Was this translation helpful? Give feedback.
-
Project: Nimble (html) In our Storybook, the By using the --debug-webpack option, we see the configs being used, and here are some important differences: Namely, "our" build is using terserMinify with (notably) the options mangle: false and keep_fnames: true, whereas the addon's build is using esbuildMinify. If I add the following line to our .storybook/main.js in webpackFinal, the addon build works properly: config.optimization.minimizer[0].options.minimizer.options.keepNames = true; However, that is not a valid option for terserMinify, so it causes "our" build to barf. Do we have the ability to directly configure the |
Beta Was this translation helpful? Give feedback.
-
--test
buildFeature owner: @ndelangen
Please comment in this discussion thread for any bug report and feedback for this feature as you test out Storybook 8. Kindly adhere to the following format:
Feature owner should triage the comments here frequently and open issues as needed.
Beta Was this translation helpful? Give feedback.
All reactions