0.5.0 • Published 5 months ago

gulp-webvsc v0.5.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 months ago

gulp-webvsc

License Version Build

Gulp plugin to convert Winamp AVS presets into Webvs JSON.

Installation

$ npm install --save-dev gulp-webvsc

Usage

webvsc([options])

The output file-extension will automatically be set to .webvs, so there's no need to pipe in additional plugins.

Example:

Standard usage

import gulp from 'gulp';
import { webvsc } from 'gulp-webvsc';

gulp.task('convert', done => {
	gulp.src('input/**/*.avs')
		.pipe(webvsc())
		.pipe(gulp.dest('output'));

	done();
});

Options

hidden

Type: boolean
Default: true

Don't extract hidden strings from fixed-size strings

minify

Type: boolean
Default: false

Minify generated JSON

noDate

Type: boolean
Default: false

Does not add date property to generated JSON

verbose

Type: number
Default: 0

Control the amount of output displayed:

  • 0 Hide output
  • 1 List detected components
  • 2 List component details

Related Projects

License

This work is licensed under The MIT License

0.5.0

5 months ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago