gulp-armarapify
v1.1.1
Published
The plugin for Gulp which allows to rapify (binarize) ArmA *.hpp/*.ext files
Downloads
11
Maintainers
Readme
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()