https://github.com/webcaetano/gulp-jinx-compiler
GulpJS plugin for compile .jinx into .swf
https://github.com/webcaetano/gulp-jinx-compiler
Last synced: 4 months ago
JSON representation
GulpJS plugin for compile .jinx into .swf
- Host: GitHub
- URL: https://github.com/webcaetano/gulp-jinx-compiler
- Owner: webcaetano
- License: mit
- Created: 2015-05-06T13:40:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-20T23:07:09.000Z (over 10 years ago)
- Last Synced: 2025-10-19T22:39:13.377Z (8 months ago)
- Language: ActionScript
- Size: 148 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://travis-ci.org/webcaetano/gulp-jinx-compiler) [](http://badge.fury.io/js/gulp-jinx-compiler)
# Gulp Flash
### Installation
```
npm install gulp-jinx-compiler
```
### Documentation
Without parameters
```javascript
var jinxCompiler = require('gulp-jinx-compiler');
gulp.src('test/app/flash/test.jinx')
.pipe(jinxCompiler('test/app/flash/dist'))
// will compile jinx into swf
```
With parameters
```javascript
gulp.src('test/app/flash/test.jinx')
.pipe(jinxCompiler('test/app/flash/dist',{
'debug':true,
'library-path': [
'./libs'
],
'source-path': [
'./zClass'
],
'swf-version': 13,
'use-gpu': true
})); // will compile jinx into swf
```
---------------------------------
The MIT [License](https://raw.githubusercontent.com/webcaetano/gulp-flash/master/LICENSE.md)