Skip to content

Commit

Permalink
Merge pull request #67 from lukasoppermann/reset-valueToCssVariable
Browse files Browse the repository at this point in the history
reset to before valueToCssVariable
  • Loading branch information
lukasoppermann committed Apr 20, 2024
2 parents 8b4ec69 + 592e594 commit 6542b13
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 89 deletions.
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.

0 comments on commit 6542b13

Please sign in to comment.