This repository was archived by the owner on Nov 26, 2021. It is now read-only.
Releases: Financial-Times/sass
Releases · Financial-Times/sass
Release list
patch: Add ability to publish prereleases with a different dist-tag
Prior to this change, every release would be given the dist-tag `latest`, which is not what we want. We only want stable releases to be given the `latest` dist-tag
patch: set origamiType to cli
Merge pull request #29 from Financial-Times/otype set origamiType to cli
v1.32.2
use correct location for the dart snapshot as it was renamed it lates…
patch: update to sass 1.26.9
v1.32.1 update to sass 1.26.9
minor: update to the latest version sass - version 1.26.8
v1.32.0 update to the latest version sass - version 1.26.8
minor: update to dart-sass 1.26.3
update to dart-sass 1.26.3 (#10) * update to dart-sass 1.26.3 * add some logging to the update script
v1.30.15
make the meta package in the repo use file protocols so it is easy to…
v1.30.14
Add postinstall scripts which throw an error if the os or cpu is diff…
Release @financial-times/sass to the world
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);
});