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

CI test #113

Closed
wants to merge 6 commits into from
Closed
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
119 changes: 0 additions & 119 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/bezier-codemod/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ enum Option {
V2RemoveAlphaFromAlphaComponents = 'v2-remove-alpha-from-alpha-components',
V2TextComponentInterface = 'v2-text-component-interface',
V2ImportFromBezierToStyledComponents = 'v2-import-from-bezier-to-styled-components',
Exit = 'Exit',
Exit = 'Exit_test',
}

type TransformName = Exclude<Option, Option.Exit>
Expand Down
4 changes: 2 additions & 2 deletions packages/bezier-react/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import styles from './Button.module.scss'

export const BUTTON_TEST_ID = 'bezier-button'

function getTypography(size: ButtonSize) {
function getTypography_test_2(size: ButtonSize) {
return (
{
xs: '13',
Expand Down Expand Up @@ -147,7 +147,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
{text && (
<Text
className={styles.ButtonText}
typo={getTypography(size)}
typo={getTypography_test_2(size)}
bold
>
{text}
Expand Down
4 changes: 2 additions & 2 deletions packages/bezier-tokens/scripts/lib/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Named, Transform } from 'style-dictionary'
import { extractNumber, toCSSDimension } from './utils'

type CustomTransform = Named<Transform<unknown>>
type Transforms = Record<string, CustomTransform>
type Transforms_test = Record<string, CustomTransform>

export const CSSTransforms = {
alphaNamespace: {
Expand Down Expand Up @@ -104,4 +104,4 @@ export const CSSTransforms = {
.map(({ color, position }) => `${color} ${position}`)
.join(', ')})`,
},
} satisfies Transforms
} satisfies Transforms_test
Loading