gulp-theo
Version:
Gulp-theo is a plugin that transforms and formats Design Tokens
41 lines (28 loc) • 799 B
Markdown
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
* `theo` is now a `peerDependency`
* `gulp-theo` now just exports a function instead of an object with a `plugin` property
```sh
npm install theo gulp-theo --save-dev
```
```js
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.
[]: https://github.com/salesforce-ux/gulp-theo/compare/v1.0.0...2.0.0