@vcl/preprocessor

0.6.3 • Public • Published

VCL preprocessor

The VCL preprocessor allows to create builds from NPM based CSS modules. It is based on webpack and the postcss processor framework.

Installation

$ npm install @vcl/preprocessor

Usage

Command Line

Usage: vcl-preprocessor <input> <output>

Options: --version, -v Show version number --help, -h Show help --watch, -w watches the input file for changes --import-root, -i base directory for file based imports --optimize, o optimize css --source-map, -s generate source maps --source-map-inline, -si generate source maps

Examples:

vcl-preprocessor index.sss compiled.css     # Compile index.sss and output to compiled.css

The VCL CLI will create the destination directory if it does not exist.

echo "a\n  color: green" | vcl-preprocessor # Pipe string through preprocessor

API

var vcl = require('@vcl/preprocessor');

// Will compile the input file and store the result in the output file
vcl(inputFile, outputFile, opts).then((result) => {
  result.css; // compiled css
});

// Will compile the input file and store the result in the output file
// Also recompiles the output file on changes
vcl.compileFile(inputFile, outputFile, opts).then(...);

// Will return an array of postCSS plugins
var plugins = vcl.createPostCSSPlugins(opts);

Options

  • root [process.cwd()] base directory for file based imports.
  • sourceMap [false] creates a source map
  • optimize [false] optimizes css
  • url [true] follows urls

Entry CSS File

The following ways to import CSS files are supported:

@import "node-module-name";
@import "node-module-name/file";
@import "./local-file-relative-to-this.css";

Features

Package Sidebar

Install

npm i @vcl/preprocessor

Weekly Downloads

5

Version

0.6.3

License

MIT

Unpacked Size

93.8 kB

Total Files

18

Last publish

Collaborators

  • marcode95
  • vanthome
  • dani723
  • vilsol
  • jurgis-upenieks