juliancwirko:s-jeet

v1.0.0Published 9 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Jeet grid package for Meteor

only Stylus, because it is awesome ;) (no Scss)

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:

Meteor.js without Bootstrap

Awesome deps!

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%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
}

Always actual, based on Caniuse.com!

Also take a look at

Changelog

  • 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