rework-plugin-references

1.0.1 • Public • Published

rework-plugin-references

[Build Status](https://travis-ci .org/reworkcss/rework-plugin-references)

Add property reference support.

button {
  width: 120px;
}
 
button.round {
  width: 50px;
  height: @width;
  line-height: @height;
  background-size: @width @height;
}

yields:

button {
  width: 120px
}
 
button.round {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-size: 50px 50px
}

Package Sidebar

Install

npm i rework-plugin-references

Weekly Downloads

7

Version

1.0.1

License

MIT

Last publish

Collaborators

  • jongleberry
  • conradz
  • necolas
  • slexaxton
  • bclinkinbeard