Skip to content
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 408 Bytes

readme.md

File metadata and controls

22 lines (15 loc) · 408 Bytes

sass

Prebuilt dart-sass binaries available via npm

API

$ npm install --save @financial-times/sass
const execFile = require('child_process').execFile;
const sass = require('@financial-times/sass');

execFile(sass, ['styles.scss'], (err, stdout) => {
	console.log(stdout);
});

Updating sass binary

To update this project to the latest dart-sass, run the npm update command.