forked from enviPath/enviPy
Current Dev State
This commit is contained in:
49
static/js/ketcher2/node_modules/gulp-zip/readme.md
generated
vendored
Normal file
49
static/js/ketcher2/node_modules/gulp-zip/readme.md
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
# gulp-zip [](https://travis-ci.org/sindresorhus/gulp-zip)
|
||||
|
||||
> ZIP compress files
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save-dev gulp-zip
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const gulp = require('gulp');
|
||||
const zip = require('gulp-zip');
|
||||
|
||||
gulp.task('default', () =>
|
||||
gulp.src('src/*')
|
||||
.pipe(zip('archive.zip'))
|
||||
.pipe(gulp.dest('dist'))
|
||||
);
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
Supports [streaming mode](https://github.com/gulpjs/gulp/blob/master/docs/API.md#optionsbuffer).
|
||||
|
||||
### zip(filename, [options])
|
||||
|
||||
#### filename
|
||||
|
||||
Type: `string`
|
||||
|
||||
#### options
|
||||
|
||||
Type: `Object`
|
||||
|
||||
##### compress
|
||||
|
||||
Type: `boolean`<br>
|
||||
Default: `true`
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
Reference in New Issue
Block a user