Skip to content

Commit

Permalink
Merge 7d90548 into 587ecfc
Browse files Browse the repository at this point in the history
  • Loading branch information
Snugug committed Dec 30, 2014
2 parents 587ecfc + 7d90548 commit ef0a6ab
Show file tree
Hide file tree
Showing 15 changed files with 398 additions and 14,248 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g gulp
220 changes: 0 additions & 220 deletions Gruntfile.js

This file was deleted.

29 changes: 29 additions & 0 deletions Gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
var gulp = require('gulp');

//////////////////////////////
// Begin Lint Tasks
//////////////////////////////
require('./tasks/jshint')(gulp, [
'build/**/*.js',
'!build/**/*.min.js'
]);

//////////////////////////////
// Begin Test Tasks
//////////////////////////////
require('./tasks/karma')(gulp);

//////////////////////////////
// Dist Tasks
//////////////////////////////
require('./tasks/dist')(gulp, [
'build/**/*.js',
'!build/**/*.min.js'
]);

//////////////////////////////
// Custom Tasks
//////////////////////////////
gulp.task('dev', ['jshint--dev', 'karma--dev']);
gulp.task('travis', ['karma', 'karma--coverage']);
gulp.task('build', ['dist--each', 'dist--all']);
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# eq.js [![Code Climate](https://codeclimate.com/github/Snugug/eq.js/badges/gpa.svg)](https://codeclimate.com/github/Snugug/eq.js) [![Bower version](https://badge.fury.io/bo/eq.js.svg)](http://badge.fury.io/bo/eq.js)
# eq.js [![Code Climate](https://codeclimate.com/github/Snugug/eq.js/badges/gpa.svg)](https://codeclimate.com/github/Snugug/eq.js) [![Build Status](https://travis-ci.org/Snugug/eq.js.svg)](https://travis-ci.org/Snugug/eq.js) [![Bower version](https://badge.fury.io/bo/eq.js.svg)](http://badge.fury.io/bo/eq.js)
### Element queries, fast and light

Element queries are the "holy grail" of responsive web design, allowing you to create a single component that can be dropped into any position in any layout and have them respond appropriately. Unfortunately, due to some hard-to-deal-with chicken-and-egg cases, especially involving inline elements, it's unlikely that element queries will make it into browsers any time soon.
Expand Down
5 changes: 3 additions & 2 deletions dist/eq.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/eq.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ef0a6ab

Please sign in to comment.