1.0.1 • Published 9 months ago

@csstools/css-syntax-patches-for-csstree v1.0.1

Weekly downloads
-
License
MIT-0
Repository
github
Last release
9 months ago

CSS Syntax Patches For CSSTree

Path csstree syntax definitions with the latest data from CSS specifications.

Usage

npm install @csstools/css-syntax-patches-for-csstree
import { fork } from 'css-tree';
import syntax_patches from '@csstools/css-syntax-patches-for-csstree' with { type: 'json' };

const forkedLexer = fork({
	atrules: syntax_patches.next.atrules,
	properties: syntax_patches.next.properties,
	types: syntax_patches.next.types,
}).lexer;

next

import syntax_patches from '@csstools/css-syntax-patches-for-csstree' with { type: 'json' };

console.log(syntax_patches.next);
//                         ^^^^

CSS specifications are often still in flux and various parts might change or disappear altogether.
Specifications also contains parts that haven't been implemented yet in a browser.
Only CSS that is widely adopted can be expected to be stable.

The next grouping contains a combination of what is currently valid in browsers and the progress in various specifications.

In the future more groupings might be added.

1.0.1

9 months ago

1.0.0

9 months ago