@vtex/tachyons-generator

1.5.1 • Public • Published

@vtex/tachyons-generator

Generate a custom VTEX Tachyons build with a json configuration.

Originally forked from tachyons-generator.

Installation

npm i -S @vtex/tachyons-generator

Usage

This will generate an index.html file with the generated style guide as well as a static css file.

const fs = require('fs')

const tachyonsGenerator = require('@vtex/tachyons-generator')
const config = require('./config.json')

const generate = async () => {
  const tachy = tachyonsGenerator(config)

  // Minify CSS
  const out1 = await tachy.generate({ minify: true })
  fs.writeFileSync('tachyons.min.css', out1)

  // Keep colors as CSS variables
  const out2 = await tachy.generate({ compileVars: false })
  fs.writeFileSync('tachyons-with-vars.css', out2)

  // Create stylesheet for devices of type "large" only
  const out3 = await tachy.generate({ stylesheetType: 'large' })
  fs.writeFileSync('tachyons-large.css', out3)

  // Generate docs website
  const docs = await tachy.docs()
  fs.writeFileSync('index.html', docs)
}

generate()

Example config

Check config.js

Optional configurations

namespace

You can pass a namespace property to namespace the CSS generated (including the normalize module).

Example:

 "namespace": "my-namespace",

Will generate the following CSS:

.my-namespace .bg-black { background-color: #000; }

License

MIT

Package Sidebar

Install

npm i @vtex/tachyons-generator

Weekly Downloads

2

Version

1.5.1

License

MIT

Unpacked Size

84.8 kB

Total Files

92

Last publish

Collaborators

  • afonsopraca
  • alcar
  • alinevillaca
  • amoreira
  • analuizamtg
  • andreldsa
  • anitavincent
  • arthurepc
  • arturpimentel
  • athoscouto
  • augusto.lazaro
  • augustob
  • bivillar
  • breno
  • brunohq
  • brunojdo
  • caio.oliveira
  • cmdalbem
  • daher
  • diegoximenes
  • ericreis
  • felippenardi
  • firstdoit
  • guigs
  • guilhermebruzzi
  • gustavorosolem
  • iago
  • igorframos
  • jeymisson
  • jgfidelis
  • kaisermann
  • kevinchevallier
  • lbebber
  • lucasecdb
  • lurian
  • marcoskwkm
  • marcosvcp
  • nandoacoelho
  • natalia_godot
  • nonsequitur
  • ntmedina
  • r-araripe
  • rafabac
  • rafarubim
  • rogerlucena
  • salesfelipe
  • tergol
  • thiagomurakami
  • tiagonapoli
  • tlgimenes
  • vcalasans
  • victorges
  • victorhmp
  • vtexlab