Git Product home page Git Product logo

grunt-as3's Introduction

grunt-as3

Built with Grunt

This is an awesome plugin for who have been working with Grunt.js and now have to implement few AS3 modules in the same environment. You don't need to download an exclusive flex sdk plugin for it works. You should take advantage of the Flex SDK already installed in your environment, you have just to create a link into Gruntfile.js file. Also the MXMLC remains the same arguments, thus you can read all the documentation about it on the adobe's website.

Requirements

This plugin requires:

  • grunt-shell

Getting Started

This plugin requires Grunt ~0.4.4

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-as3 --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks("grunt-as3");

The "grunt-as3" task

Overview

In your project's Gruntfile, add a section named grunt-as3 to the data object passed into grunt.initConfig().

grunt.initConfig({
    
    sdk : "<%= SDK_PATH %>",

    as3: {

        mxmlc : {
            test1 : {
                args : [
                    "-debug=true",
                    "-target-player=<%= FLASHPLAYER_VERSION %>",
                    "-use-network=true",
                    "-static-link-runtime-shared-libraries=true",
                    "-source-path=<%= SOURCE_PATH %>",
                    "-compiler.include-libraries+=<%= LIB_PATH %>",
                    "-output <%= SWF %> <%= AS %>"
                ]
            },

            test2 : {
                args : [
                    "-default-size 500 500",
                    "-default-frame-rate=24",

                    "-debug=true",
                    "-target-player=<%= FLASHPLAYER_VERSION %>",
                    "-use-network=true",
                    "-static-link-runtime-shared-libraries=true",
                    "-source-path=<%= SOURCE_PATH %>",
                    "-compiler.include-libraries+=<%= LIB_PATH %>",
                    "-output <%= SWF %> <%= AS %>"
                ]
            }
        },

        asdoc : {
            main : {
                args : [
                    "-source-path <%= SOURCE_PATH %>",
                    "-doc-sources <%= SOURCE_PATH %>", 
                    "-library-path <%= LIBRARY_PATH %>",
                    "-output <%= OUTPUT_PATH %>"
                ]
            }
        },

        adt : {
            android : {
                args : []
            },
            
            ios : {
                args : []
            },

            air : {
                args : []
            }
        },

        compc : {
            lib1 : {
                args : []
            },

            lib2 : {
                args : []
            }

        }
    },
});

Options

sdk

Type: String

Full path to Flex SDK.

mxmlc

Type: Object

Run command mxmlc from Flex SDK.

asdoc

Type: Object

Run command asdoc from Flex SDK.

compc

Type: Object

Run command compc from Flex SDK.

adt

Type: Object

Run command adt from Flex SDK.

args

Type: Array

The args is always inside of a Flex SDK command object as you saw in the example. You can check the documentation for:

License

MIT © Victor Potasso

grunt-as3's People

Contributors

andymerryman avatar victorpotasso avatar

Watchers

 avatar  avatar

Forkers

jccrosby

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.