@glitz/devtool-transformer
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

Glitz

Development tool to validate style declarations using CSSStyleDeclaration in the browser. It keeps track on how the browser reacts to it and notifies you via console if there's any ignored declarations. Then it returns the same style object without touching it.

It will only work in the browser and in development mode (process.env.NODE_ENV !== 'production'). In production, it will compile to: function (style) { return style }

import { GlitzClient } from '@glitz/core';
import devTool from '@glitz/devtool-transformer';
const glitz = new GlitzClient({ transformer: devTool });

const className = glitz.injectStyle({
  colour: 'red',
  // Warning: An invalid CSS declaration { colour: 'red' } was ignored by the browser
});

The order of this transformer is quite important if you're using multiple transformers. It should be before the prefixer-transformer for not bloating your console with warnings about other vendors specific declarations and it should be after the length-transformer for not receive warnings when lengths doesn't have units.

import { GlitzClient, compose } from '@glitz/core';
import numberToLength from '@glitz/length-transformer';
import devTool from '@glitz/devtool-transformer';
import prefixer from '@glitz/prefixer-transformer';
const glitz = new GlitzClient({
  transformer: compose(prefixer, devTool, numberToLength),
});

const className = glitz.injectStyle({
  display: 'flex',
  width: 100,
  colour: 'red',
  // Warning: An invalid CSS declaration { colour: 'red' } was ignored by the browser
});

Getting started

$ npm install @glitz/devtool-transformer

Readme

Keywords

none

Package Sidebar

Install

npm i @glitz/devtool-transformer

Weekly Downloads

106

Version

4.0.1

License

MIT

Unpacked Size

17.6 kB

Total Files

9

Last publish

Collaborators

  • faddee