Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gulp-community/gulp-cson
CSON gulp plugin
https://github.com/gulp-community/gulp-cson
Last synced: about 2 months ago
JSON representation
CSON gulp plugin
- Host: GitHub
- URL: https://github.com/gulp-community/gulp-cson
- Owner: gulp-community
- License: mit
- Created: 2014-03-03T21:45:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T20:29:28.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T20:41:16.543Z (2 months ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 13
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#gulp-cson
[![Build Status](https://travis-ci.org/stevelacy/gulp-cson.png?branch=master)](https://travis-ci.org/stevelacy/gulp-cson)
[![NPM version](https://badge.fury.io/js/gulp-cson.png)](http://badge.fury.io/js/gulp-cson)> All options are passed to [CSON](https://github.com/bevry/cson) any output issues should be opened there
Packagegulp-cson
Description
Parse cson with gulpNode Version
>= 5+Gulp Version
3.x# Usage
## Install
```
npm install gulp-cson --save
```
## Example
```js
const gulp = require('gulp')
const gcson = require('../')gulp.task('cson', () => {
gulp.src('./normal.cson')
.pipe(gcson())
.pipe(gulp.dest('./'))
})gulp.task('default', ['cson'])
```####You can view more examples in the [example folder.](https://github.com/stevelacy/gulp-cson/tree/master/examples)
## LICENSE
(MIT License)
Copyright (c) 2015 Steve Lacy http://slacy.me
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.