Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added to dynotrust test scope #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .bitmap
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
/* THIS IS A BIT-AUTO-GENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. */

/**
* The Bitmap file is an auto generated file used by Bit to track all your Bit components. It maps the component to a folder in your file system.
* This file should be committed to VCS(version control).
* Components are listed using their component ID (https://bit.dev/docs/components/component-id).
* If you want to delete components you can use the "bit remove <component-id>" command.
* See the docs (https://bit.dev/docs/components/removing-components) for more information, or use "bit remove --help".
*/

{
"envs/tailwind-react": {
"scope": "shohamgilad.tailwind-test",
"version": "0.0.2",
"scope": "dynotrust.test",
"version": "0.0.1",
"mainFile": "index.ts",
"rootDir": "components/envs/tailwind-bit"
},
"styles/tailwind-styles": {
"scope": "shohamgilad.tailwind-test",
"scope": "dynotrust.test",
"version": "0.0.1",
"mainFile": "index.ts",
"rootDir": "components/tailwind-styles"
},
"ui/button": {
"scope": "shohamgilad.tailwind-test",
"scope": "dynotrust.test",
"version": "0.0.2",
"mainFile": "index.ts",
"rootDir": "components/ui/button/components/tailwind-button"
},
"ui/themed-component": {
"scope": "shohamgilad.tailwind-test",
"version": "0.0.2",
"scope": "dynotrust.test",
"version": "0.0.1",
"mainFile": "index.ts",
"rootDir": "components/ui/themed-component"
},
Expand Down
2 changes: 1 addition & 1 deletion components/envs/tailwind-bit/tailwind-react.aspect.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Aspect } from '@teambit/harmony';

export const TailwindReactAspect = Aspect.create({
id: 'shohamgilad.tailwind-test/envs/tailwind-react',
id: 'dynotrust.test/envs/tailwind-react',
defaultConfig: {},
});
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ReactAspect, ReactPreview } from '@teambit/react';
import { TailwindReactAspect } from './tailwind-react.aspect';

// load tailwind global custom styles, for compositions
import '@shohamgilad/tailwind-test.styles.tailwind-styles/dist/styles.css';
import '@dynotrust/test.styles.tailwind-styles/dist/styles.css';

export class TailwindReactPreview {
static runtime = PreviewRuntime;
Expand Down
2 changes: 1 addition & 1 deletion components/envs/tailwind-bit/webpack/transformers.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WebpackConfigTransformer, WebpackConfigMutator } from "@teambit/webpack";
import * as stylesRegexps from "@teambit/webpack.modules.style-regexps";
import tailwindcssPlugin from "tailwindcss";
import { tailwindConfigPath } from "@shohamgilad/tailwind-test.styles.tailwind-styles";
import { tailwindConfigPath } from "@dynotrust/test.styles.tailwind-styles";

function addTailwindConfig(config: WebpackConfigMutator): WebpackConfigMutator {
// @ts-ignore
Expand Down
Loading