Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winseros/gulp-armarapify-plugin
The plugin's goal is to rapify (binarize) Arma2/Arma3 configuration files using Gulp.
https://github.com/winseros/gulp-armarapify-plugin
arma arma2 arma3 gulp-plugin
Last synced: about 1 month ago
JSON representation
The plugin's goal is to rapify (binarize) Arma2/Arma3 configuration files using Gulp.
- Host: GitHub
- URL: https://github.com/winseros/gulp-armarapify-plugin
- Owner: winseros
- License: mit
- Created: 2017-01-05T14:20:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-15T19:20:15.000Z (about 7 years ago)
- Last Synced: 2024-11-14T07:23:59.824Z (about 2 months ago)
- Topics: arma, arma2, arma3, gulp-plugin
- Language: TypeScript
- Homepage:
- Size: 222 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
[![node][node-image]][node-url] [![npm][npm-image]][npm-url] [![Travis branch][travis-image]][travis-url] [![Coveralls branch][coveralls-image]][coveralls-url] [![Dependencies][david-image]][david-url]
# Gulp Arma Rapify plugin
The plugin's goal is to [rapify (binarize)](https://community.bistudio.com/wiki/raP_File_Format_-_OFP) Arma2/Arma3 configuration files using [Gulp](http://gulpjs.com).
## 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](https://community.bistudio.com/wiki/PreProcessor_Commands), you should use a [gulp-armapreprocessor](https://github.com/winseros/gulp-armapreprocessor-plugin) plugin to resolve them first.## Plugin API
rapify()[node-url]: https://nodejs.org
[node-image]: https://img.shields.io/node/v/gulp-armarapify.svg[npm-url]: https://www.npmjs.com/package/gulp-armarapify
[npm-image]: https://img.shields.io/npm/v/gulp-armarapify.svg[travis-url]: https://travis-ci.org/winseros/gulp-armarapify-plugin
[travis-image]: https://img.shields.io/travis/winseros/gulp-armarapify-plugin/master.svg[coveralls-url]: https://coveralls.io/github/winseros/gulp-armarapify-plugin
[coveralls-image]: https://img.shields.io/coveralls/winseros/gulp-armarapify-plugin/master.svg[david-url]: https://david-dm.org/winseros/gulp-armarapify-plugin
[david-image]: https://david-dm.org/winseros/gulp-armarapify-plugin/master.svg