@figma-export/output-styles-as-less
TypeScript icon, indicating that this package has built-in type declarations

6.0.1 • Public • Published

@figma-export/output-styles-as-less

Styles Outputter for @figma-export that exports styles to LESS.

With this outputter you can export all the styles as variables inside a .less file.

This is a sample of the output:

$ tree output/
# output/
# └── _variables.less

.figmaexportrc.js

You can easily add this outputter to your .figmaexportrc.js:

import asLess from '@figma-export/output-styles-as-less'

export default {
    commands: [
        ['styles', {
            fileId: 'fzYhvQpqwhZDUImRz431Qo',
            outputters: [
                asLess({
                    output: './output'
                })
            ]
        }],
    ]
}

output is mandatory.

getFilename and getVariableName are optional.

import asLess from '@figma-export/output-styles-as-less'
import { kebabCase } from '@figma-export/utils'

...

asLess({
    output: './output',
    getFilename: () => '_variables',
    getVariableName = (style, descriptor) => `${kebabCase(style.name).toLowerCase()}${descriptor != null ? `-${descriptor}` : ''}`,
})

defaults may change, please refer to ./src/index.ts

Install

Using npm:

npm install --save-dev @figma-export/output-styles-as-less

or using yarn:

yarn add @figma-export/output-styles-as-less --dev

Package Sidebar

Install

npm i @figma-export/output-styles-as-less

Weekly Downloads

686

Version

6.0.1

License

MIT

Unpacked Size

15.5 kB

Total Files

11

Last publish

Collaborators

  • marcomontalbano