Awesome
Jeet grid package for Meteor
only Stylus, because it is awesome ;) (no Scss)
Ready for Meteor 1.2 (use version 1.0.0 for older Meteor projects)
Usage
You don't need to install Meteor Stylus package it is absorbed by s-jeet. If you have it installed just uninstall it and install only s-jeet package.
Just install it:
meteor add juliancwirko:s-jeet
and import jeet and rupture .styl files (you can also add nib):
@import 'nib'
@import 'jeet'
@import 'rupture'
nib works well with Autoprefixer. Autoprefixer removes unused prefixes generated by nib and nib itself is sometimes helpful with its mixins and features.
Blog post about working with Jeet in Meteor:
Awesome deps!
- Stylus 0.53.0
- nib 1.1.0
- autoprefixer-stylus 0.8.1
- Jeet 6.1.2
- Rupture 0.6.1
Autoprefixer
"Parse CSS and add vendor prefixes to rules by Can I Use" - caniuse.com
Demo:
.test
transform translateX(20%)
Which compiles to:
.test {
-webkit-transform: translateX(20%);
transform: translateX(20%);
}
Always actual, based on Caniuse.com!
Also take a look at
- sGrid - Stylus Flexbox Grid System
- Scotty - Meteor Boilerplate with Stylus, Flow Router, sGrid and many more
- PostCSS for Meteor
- and other my repos
Changelog
- 2.0.2 Stylus update
- 2.0.1 Autoprefixer update
- 2.0.0 Stylus compiler update - package is ready for Meteor 1.2
- 1.0.0 Stylus update; it is ready for 1.0.0
- 0.2.9 Autoprefixer update
- 0.2.8 Stylus, Autoprefixer updates
- 0.2.7 Stylus, Nib, Autoprefixer updates
- 0.2.6 Autoprefixer and Rupture versions bump
- 0.2.5 Stylus version bump
- 0.2.4 Autoprefixer version bump
- 0.2.3 Stylus and Nib versions bump
- 0.2.2 Jeet version bump
- 0.2.1 Jeet 6 on board
- 0.2.0 now with Autoprefixer
- 0.1.0 better approach with compile plugin (based on the Meteor Stylus package)
- 0.0.5 init