0.4.1 • Published 6 years ago

sssa v0.4.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

SSSA

A toy CSS preprocessor implementation with SASS like grammar.

Usage

CLI

npm i sssa -g

# examples
sssa --help
cat file.sssa | sssa
echo '.a { .b { color: red; } }' | sssa

NodeJS

import { compile } from 'sssa';

const {
  tokens,
  ast,
  code,
} = compile('b {}', opts);

Options

  • opts.scan Only proceed tokenize and return tokens;
  • opts.parse Proceed tokenize and generate corresponding ast;
  • opts.transform Transform SSSA ast to CSS ast;

Develop

# install deps
npm install

# build app
npm run build

# build & watch app
npm run watch

# build & launch app
npm run start

# run unit test
npm run test

License

© BinRui Guan

0.4.1

6 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.1

7 years ago