All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
theo
is now apeerDependency
gulp-theo
now just exports a function instead of an object with aplugin
property
npm install theo gulp-theo --save-dev
const gulp = require('gulp');
const theo = require('gulp-theo');
gulp
.src('design/props.yml')
.pipe(
theo({
transform: { type: 'web' },
format: { type: 'scss' }
})
)
.pipe(gulp.dest('dist'));
- Initial release.