Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/viur-framework/gulp-join-media-queries
gulp-plugin to join media-queries
https://github.com/viur-framework/gulp-join-media-queries
css gulp gulp-plugin join less madeindortmund mausbrand media-queries nodejs npm package viur
Last synced: 3 months ago
JSON representation
gulp-plugin to join media-queries
- Host: GitHub
- URL: https://github.com/viur-framework/gulp-join-media-queries
- Owner: viur-framework
- License: mit
- Fork: true (1ven/gulp-merge-media-queries)
- Created: 2017-07-24T14:12:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T11:20:24.000Z (almost 6 years ago)
- Last Synced: 2024-09-15T22:11:50.013Z (4 months ago)
- Topics: css, gulp, gulp-plugin, join, less, madeindortmund, mausbrand, media-queries, nodejs, npm, package, viur
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gulp-join-media-queries
- Size: 54.7 KB
- Stars: 6
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-join-media-queries
> Combine matching media queries into one media query definition. Useful for CSS generated by preprocessors using nested media queries.
This plugin is the further development of the originally fork [gulp-merge-media-queries](https://github.com/1ven/gulp-merge-media-queries).
Which is inspired from [grunt-combine-media-queries](https://github.com/buildingblocks/grunt-combine-media-queries).## Install
```
npm install gulp-join-media-queries --save-dev
```## Usage
```javascript
var jmq = require('join-merge-media-queries');gulp.task('jmq', function () {
gulp.src('src/**/*.css')
.pipe(jmq({
log: true
}))
.pipe(gulp.dest('dist'));
});
```## Options
### log
Type: `boolean` Default: `false`
Log processed media queries.
### use_external
Type: `boolean` Default: `false`
Writes media queries into external file, named as [src].responsive.css
## License
(MIT License)
Copyright (C) 2017-2019 by Mausbrand Informationssysteme GmbH.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.