Skip to content
This repository has been archived by the owner on Jul 10, 2022. It is now read-only.

Commit

Permalink
Misc. doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
nbarikipoulos committed Aug 20, 2020
1 parent eb6f317 commit 2b518eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Package | gulp-cipher-value |
| ------- | ----------------- |
| Description | Gulp wrapper for [json-cipher-value](https://github.com/nbarikipoulos/json-cipher-value). (Un)cipher values of json files retaining their types. |
| Description | Gulp wrapper for [json-cipher-value](https://github.com/nbarikipoulos/json-cipher-value). (De)cipher values of json files remaining their types. |

## Install

Expand All @@ -19,12 +19,12 @@ npm install gulp-cipher-json --save-dev

```js

const gulp = require('gulp');
const cipherJSON = require('gulp-cipher-json');
const gulp = require('gulp')
const cipherJSON = require('gulp-cipher-json')

gulp.task('default', _ => gulp.src('src/data/*.json')
.pipe(cipherJSON(
'decrypt',
'encrypt',
'my secret password from anywhere'
))
.pipe(gulp.dest('dist/data'))
Expand Down

0 comments on commit 2b518eb

Please sign in to comment.