UNPKG

@apache-royale/royale-js

Version:

Apache Royale (formerly FlexJS)

71 lines 2 kB
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Build Debug with AS3 Extension", "type": "actionscript", "debug": true, "problemMatcher": [ "$nextgenas_nomatch" ], "group": "build" }, { "label": "Build with Maven", "type": "shell", "command": "mvn", "args": [ "clean", "install", "-P option-with-swf", "-DskipTests" ], "group": "build", "presentation": { "echo": true, "reveal": "always", "focus": true, "panel": "dedicated" }, "problemMatcher": [ "$nextgenas_nomatch" ] }, { "label": "Build Release with AS3 Extension", "type": "actionscript", "debug": false, "problemMatcher": [ "$nextgenas_nomatch" ], "group": "build" }, { "label": "build with asconfigc", "type": "shell", "command": "asconfigc", "windows": { "args": [ "--sdk=C:\\Apache\\royale-asjs" ] }, "osx": { "args": [ "--sdk=${env:ROYALE_HOME}" ] }, "presentation": { "echo": true, "reveal": "always", "focus": true, "panel": "dedicated" }, "problemMatcher": [ "$nextgenas_nomatch" ], "group": "build" } ] }