Skip to content
/ jess Public

If you like CSS, Less, Sass, and/or CSS modules, you're gonna want to star this repo.

License

Notifications You must be signed in to change notification settings

jesscss/jess

Repository files navigation

Jess is now in Alpha! Star this repo for later updates!

Ask questions in the Jess Gitter community!

Jess

The New CSS Pre-Processing Hotness

This is the monorepo for Jess, a new, modern CSS pre-processor from the people who brought you Less. See the docs.

@import { width } from './values.ts';
@import { myMixin } from './mixins.jess';

@let iconWidth: $(width)px;

@mixin square(unit: 24px) {
  width: $unit;
  height: $unit;
}

.icon {
  @include myMixin();
  @include square($iconWidth);

  color: cornflowerblue;
}

Seriously, you're going to want to star this repo.

To set up, run:

yarn install

This project is openly seeking contributors and collaborators. To contribute:

  1. Read the Code of Conduct.
  2. See the contributing guide.
  3. Check the Todos, and see what interests you.
  4. Find a core contributor (I mean, it's just Matthew Dean so far, but you can change that) and ask them about getting started.
  5. Have the todo assigned to you in Github.
  6. Submit your PR!