Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cprussin/cp-gulp-prettier
Gulp plugin for prettier
https://github.com/cprussin/cp-gulp-prettier
Last synced: about 1 month ago
JSON representation
Gulp plugin for prettier
- Host: GitHub
- URL: https://github.com/cprussin/cp-gulp-prettier
- Owner: cprussin
- License: mit
- Created: 2018-02-07T00:49:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T20:23:35.000Z (over 6 years ago)
- Last Synced: 2023-08-30T14:48:16.088Z (over 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gulp Prettier
A gulp plugin for Prettier.
## Usage
```js
const prettier = require('cp-gulp-prettier');gulp
.src(FILES_TO_FORMAT)
.pipe(prettier(PRETTIER_CONFIG))
.pipe(gulp.dest(OUTPUT));
```