Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ankitbko/gulp-vnext-dnu
gulp plugin - vNext package manager
https://github.com/ankitbko/gulp-vnext-dnu
Last synced: about 2 months ago
JSON representation
gulp plugin - vNext package manager
- Host: GitHub
- URL: https://github.com/ankitbko/gulp-vnext-dnu
- Owner: ankitbko
- License: mit
- Created: 2015-10-21T09:08:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-21T09:10:51.000Z (about 9 years ago)
- Last Synced: 2023-08-12T14:46:08.086Z (over 1 year ago)
- Language: JavaScript
- Size: 94.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-vnext-dnu
## Commands
- restore - Restore packages
- build - Produce assemblies
- pack - Build NuGet packages## Install
```
npm install gulp-vnext-dnu --save-dev
```
## Usage
gulpfile.js
```js
var gulp = require('gulp');
var dnu = require('gulp-vnext-dnu');gulp.task('restore', dnu.restore({
src:'src/**/project.json',
noCache: true,
parallel: true
}))// or
gulp.task('dnu:restore', function () {
return gulp
.src('./src/**/project.json', {read:false})
.pipe(dnu('restore', {noCache: true}))
})
```
## Options - restore command
```
{
noCache: false,
parallel: false
}
```
## Options - build command
```
{
configuration: 'Release|Debug'
}
```
## Options - pack command
```
{
configuration: 'Release|Debug',
out: 'path_for_nuget_packages'
}
```