File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ /* jshint node: true */
2+ module . exports = function ( grunt ) {
3+ 'use strict' ;
4+
5+ grunt . loadNpmTasks ( 'grunt-bump' ) ;
6+
7+ grunt . initConfig ( {
8+ bump : {
9+ options : {
10+ files : [ 'package.json' , 'bower.json' ] ,
11+ commitFiles : [ 'package.json' , 'bower.json' ] ,
12+ pushTo : 'origin'
13+ }
14+ }
15+ } ) ;
16+ } ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " css-element-queries" ,
3+ "version" : " 0.2.0" ,
4+ "description" : " CSS-Element-Queries Polyfill. proof-of-concept for high-speed element dimension/media queries in valid css." ,
5+ "main" : " src/ElementQueries.js" ,
6+ "directories" : {
7+ "test" : " test"
8+ },
9+ "scripts" : {
10+ "test" : " echo \" Error: no test specified\" && exit 1"
11+ },
12+ "repository" : {
13+ "type" : " git" ,
14+ "url" : " git@github.com:marcj/css-element-queries.git"
15+ },
16+ "author" : " Marc J. Schmidt" ,
17+ "license" : " MIT" ,
18+ "bugs" : {
19+ "url" : " https://github.com/marcj/css-element-queries/issues"
20+ },
21+ "homepage" : " https://github.com/marcj/css-element-queries" ,
22+ "devDependencies" : {
23+ "grunt" : " ^0.4.5" ,
24+ "grunt-bump" : " ^0.3.1"
25+ }
26+ }
You can’t perform that action at this time.
0 commit comments