Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivoputzer/gulp-wiredep
https://github.com/ivoputzer/gulp-wiredep
gulp javascript stream wiredep
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivoputzer/gulp-wiredep
- Owner: ivoputzer
- Created: 2015-10-28T10:36:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T22:44:00.000Z (almost 8 years ago)
- Last Synced: 2024-11-14T18:55:29.414Z (about 1 month ago)
- Topics: gulp, javascript, stream, wiredep
- Language: JavaScript
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# gulp-wiredep
[![travis](https://img.shields.io/travis/ivoputzer/gulp-wiredep.svg?style=flat-square)](https://travis-ci.org/ivoputzer/gulp-wiredep) [![npm-dependencies](https://img.shields.io/badge/dependencies-up%20to%20date-blue.svg?style=flat-square&colorB=44CC11)](package.json) [![standard-js](https://img.shields.io/badge/coding%20style-standard-brightgreen.svg?style=flat-square)](http://standardjs.com/) [![npm-package-quality](http://npm.packagequality.com/shield/gulp-wiredep.svg?style=flat-square&colorB=44CC11)](http://packagequality.com/#?package=gulp-wiredep) [![npm-node-version](https://img.shields.io/badge/node-4%2B-blue.svg?style=flat-square)](https://nodejs.org/docs/v4.0.0/api) [![npm-version](https://img.shields.io/npm/v/gulp-wiredep.svg?style=flat-square&colorB=007EC6)](https://www.npmjs.com/package/gulp-wiredep) [![npm-license](https://img.shields.io/npm/l/gulp-wiredep.svg?style=flat-square&colorB=007EC6)](https://spdx.org/licenses/MIT)
## standard usage
```javascript
const gulp = require('gulp')
const wiredep = require('gulp-wiredep')gulp.task('bower', function () {
gulp.src('./src/footer.html')
.pipe(wiredep({
optional: 'configuration',
goes: 'here'
}))
.pipe(gulp.dest('./dest'))
})
```## usage with plugin loader
```javascript
const gulp = require('gulp')
const plug = require('gulp-plugin-loader')gulp.task('bower', function () {
gulp.src('./src/footer.html')
.pipe(plug.wiredep({
optional: 'configuration',
goes: 'here'
}))
.pipe(gulp.dest('./dest'))
})
```