# gulp-generate-tags

> gulp plugin for converting CSV or text files into on JSON file containing omniture tags and parameters

Latest version **0.0.7** (published 2015-09-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-generate-tags
pnpm add gulp-generate-tags
yarn add gulp-generate-tags
bun add gulp-generate-tags
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.7 |
| Published | 2015-09-21 |
| First published | 2015-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Chester Rivas |
| Maintainers | crivas |

## Links

- npm: https://www.npmjs.com/package/gulp-generate-tags
- Repository: https://github.com/crivas/gulp-generate-tags
- Homepage: https://github.com/crivas/gulp-generate-tags#readme
- Issues: https://github.com/crivas/gulp-generate-tags/issues
- npm.io page: https://npm.io/package/gulp-generate-tags

## Dependencies (5)

- [through2](https://npm.io/package/through2.md) ^0.6.3
- [gulp-util](https://npm.io/package/gulp-util.md) ^3.0.6
- [stream-array](https://npm.io/package/stream-array.md) ^1.1.1
- [underscore-node](https://npm.io/package/underscore-node.md) ^0.1.2
- [concat-with-sourcemaps](https://npm.io/package/concat-with-sourcemaps.md) ^1.0.2

## Recent versions

- 0.0.7 (latest) — 2015-09-21
- 0.0.6 — 2015-09-21
- 0.0.5 — 2015-08-26
- 0.0.4 — 2015-08-25

## README

Gulp Generate Tags
====================
![gulp-generate-tags build status](https://travis-ci.org/crivas/gulp-generate-tags.svg?branch=master)

> Gulp plugin that will convert txt or csv files into a JSON project. Here is an example on how you set it up in Gulp.

```js
var generateTags = require('gulp-generate-tags')

gulp.task('tags', function () {

  return gulp.src(['app/on-click.tsv', 'app/on-load.tsv'])
    .pipe(generateTags('tags.json'))
    .pipe(gulp.dest('app/tags'))

});  
```

## Options

- delimiter - default is ',' (comma) to delimit
- newline - character for new line

```js
var generateTags = require('gulp-generate-tags')

gulp.task('tags', function () {

  return gulp.src(['app/on-click.txt', 'app/on-load.txt'])
    .pipe(generateTags('tags.json', {
      delimiter: '\t'
    }))
    .pipe(gulp.dest('app/tags'))

});  
```

---
_Source: https://npm.io/package/gulp-generate-tags · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
