Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-flash

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-flash

GulpJS plugin for build actionscript into .swf

  • 1.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
decreased by-9.09%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status npm version

Gulp Flash

Installation

npm install gulp-flash

Documentation

Single file

var flash = require('gulp-flash');

gulp.src('src/main.as')
.pipe(flash()) // will out pull main.swf in same folder

Multi file

gulp.src('src/*.as')
.pipe(flash()) // will out pull all .swf in same folder

Multi file with swf output

gulp.src('src/*.as')
.pipe(flash('swf/')) // will out pull all .swf in target folder

With parameters

gulp.src('src/*.as')
.pipe(flash('swf/',{
	'library-path': [
		'./libs'
	],
	'source-path': [
		'./zClass'
	],
	'swf-version': 13,
	'use-gpu': true
}))) // will out pull all .swf in target folder using this parameters

// or 

gulp.src('src/*.as')
.pipe(flash({
	'library-path': [
		'./libs'
	],
	'source-path': [
		'./zClass'
	],
	'swf-version': 13,
	'use-gpu': true
}))) // will out pull all .swf in same folder using this parameters

The MIT License

Keywords

FAQs

Package last updated on 06 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc