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

reset to before valueToCssVariable #67

Merged
merged 1 commit into from
Apr 20, 2024
Merged
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
1 change: 0 additions & 1 deletion __tests__/build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('index.js', () => {
expect(StyleDictionary.transform["shadow/css"]).toBeDefined();
expect(StyleDictionary.transform["font/css"]).toBeDefined();
expect(StyleDictionary.transform["fontFamily/css"]).toBeDefined();
expect(StyleDictionary.transform["variables/css"]).toBeDefined();
expect(StyleDictionary.transform["fontWeight/number"]).toBeDefined();
expect(StyleDictionary.transform["gradient/css"]).toBeDefined();
expect(StyleDictionary.transform["cubicBezier/css"]).toBeDefined();
Expand Down
1 change: 0 additions & 1 deletion __tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ describe('index.ts', () => {
expect(StyleDictionary.transform['shadow/css']).toBeDefined()
expect(StyleDictionary.transform['font/css']).toBeDefined()
expect(StyleDictionary.transform['fontFamily/css']).toBeDefined()
expect(StyleDictionary.transform['variables/css']).toBeDefined()
expect(StyleDictionary.transform['fontWeight/number']).toBeDefined()
expect(StyleDictionary.transform['gradient/css']).toBeDefined()
expect(StyleDictionary.transform['cubicBezier/css']).toBeDefined()
Expand Down
35 changes: 0 additions & 35 deletions __tests__/transformer/variables-css.test.ts

This file was deleted.

6 changes: 0 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import { fontWeightToNumber } from './transformer/font-weight-to-number'
import { gradientCss } from './transformer/gradient-css'
import { namePathToDotNotation } from './transformer/name-path-to-dot-notation'
import { shadowCss } from './transformer/shadow-css'
import { variablesCss } from './transformer/variables-css'

/**
* Parsers
Expand Down Expand Up @@ -159,11 +158,6 @@ OrigialStyleDictionary.registerTransform({
name: 'border/css',
...borderCss
})

OrigialStyleDictionary.registerTransform({
name: 'variables/css',
...variablesCss
})
/**
* Transform groups
*
Expand Down
46 changes: 0 additions & 46 deletions src/transformer/variables-css.ts

This file was deleted.

Loading