juliancwirko:s-jeet

v0.2.7Published 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 (especially for Scotty boilerplate)

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.

You can use it without Scotty boilerplate. 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.

See Scotty main .styl file here: https://github.com/juliancwirko/scotty/blob/master/client/style/style.styl

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!

Changelog

  • 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