mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
1320d96cb4
* Move SendV2component into send-v2 subFolder * Create SendFormContainer and related services * Add initial SendFormComponent which uses the SendFormContainer * Remove AdditionalOptionsSectionComponent which will be added with a future PR * Add libs/tools/send to root tsconfig * Register libs/tools/send/send-ui with root jest.config.js * Register libs/tools/send/send-ui with root tailwind.config.js * Fix service injection on DefaultSendFormService --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
23 lines
633 B
JavaScript
23 lines
633 B
JavaScript
/* eslint-disable */
|
|
const config = require("./libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./libs/components/src/**/*.{html,ts,mdx}",
|
|
"./libs/admin-console/src/**/*.{html,ts,mdx}",
|
|
"./libs/auth/src/**/*.{html,ts,mdx}",
|
|
"./libs/billing/src/**/*.{html,ts,mdx}",
|
|
"./libs/platform/src/**/*.{html,ts,mdx}",
|
|
"./libs/tools/send/send-ui/src/*.{html,ts,mdx}",
|
|
"./libs/vault/src/**/*.{html,ts,mdx}",
|
|
"./apps/web/src/**/*.{html,ts,mdx}",
|
|
"./bitwarden_license/bit-web/src/**/*.{html,ts,mdx}",
|
|
"./.storybook/preview.js",
|
|
];
|
|
config.safelist = [
|
|
{
|
|
pattern: /tw-bg-(.*)/,
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|