1.1.1 • Published 6 years ago

gulp-armarapify v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

node npm Travis branch Coveralls branch Dependencies

Gulp Arma Rapify plugin

The plugin's goal is to rapify (binarize) Arma2/Arma3 configuration files using Gulp.

Installation

npm install gulp-armarapify

Usage

var gulp = require('gulp');
var rapify = require('gulp-armarapify');

gulp.task('rapify', function(){
    return gulp.src(['mission.sqm', 'description.ext'])
        .pipe(rapify())
        .pipe(gulp.dest('./dist/'));
});

Dealing with preprocessor commands

If your files contain preprocesor instructions, you should use a gulp-armapreprocessor plugin to resolve them first.

Plugin API

rapify()