mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
eeb407b8a4
* rebase to master * use bit-menu in product switcher; add focusStrategy to bit-menu * recommit locales after rebase * add light style to iconButton, use in product-switcher * move out of component library * add buttonType input * gate behind sm flag * update aria-label * add role input to bit-menu * style changes * simplify partition logic * split into two components for Storybook * update focus styles; update grid sizing to relative * fix underline on hover * update attribute binding * move to layouts dir * add bitLink; update grid gap * reorder loose components * move orgs mock * move a11y module * fix aria role bug; add aria label to menu * update colors * update ring color * simplify colors * remove duplicate link module
34 lines
924 B
JavaScript
34 lines
924 B
JavaScript
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");
|
|
|
|
module.exports = {
|
|
stories: [
|
|
"../libs/components/src/**/*.stories.mdx",
|
|
"../libs/components/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
"../apps/web/src/**/*.stories.mdx",
|
|
"../apps/web/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
"../bitwarden_license/bit-web/src/**/*.stories.mdx",
|
|
"../bitwarden_license/bit-web/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
],
|
|
addons: [
|
|
"@storybook/addon-links",
|
|
"@storybook/addon-essentials",
|
|
"@storybook/addon-a11y",
|
|
"storybook-addon-designs",
|
|
],
|
|
framework: "@storybook/angular",
|
|
core: {
|
|
builder: "webpack5",
|
|
disableTelemetry: true,
|
|
},
|
|
env: (config) => ({
|
|
...config,
|
|
FLAGS: JSON.stringify({
|
|
secretsManager: true,
|
|
}),
|
|
}),
|
|
webpackFinal: async (config, { configType }) => {
|
|
config.resolve.plugins = [new TsconfigPathsPlugin()];
|
|
return config;
|
|
},
|
|
};
|