Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 799 Bytes

CHANGELOG.md

File metadata and controls

40 lines (28 loc) · 799 Bytes

Change Log

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.

⚠️ Breaking changes

  • theo is now a peerDependency
  • gulp-theo now just exports a function instead of an object with a plugin property

Migration guide

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'));

1.0.0

  • Initial release.