1.8.1 • Published 3 months ago

asconfigc v1.8.1

Weekly downloads
27
License
Apache-2.0
Repository
github
Last release
3 months ago

asconfigc

A command line utility that compiles an ActionScript project configured with an asconfig.json file. This utility parses the configuration file and runs the compiler with the appropriate options. It can also package an Adobe AIR application. Supports a variety of ActionScript SDKs, including Adobe AIR SDK & Compiler, Apache Flex, the Feathers SDK, and Apache Royale.

Installation

Requires Node.js.

npm install -g asconfigc

Command Line Usage

Run asconfigc in a directory containing an asconfig.json file.

The following options are available:

  • -p FILE OR DIRECTORY or --project FILE OR DIRECTORY

    	Compile a project with the path to its configuration file or a directory containing *asconfig.json*. If omitted, will look for *asconfig.json* in current working directory.
  • --sdk DIRECTORY

    	Specify the directory where the ActionScript SDK is located. If omitted, defaults to checking `ROYALE_HOME`, `FLEX_HOME`, and `PATH` environment variables for a supported SDK.
  • --debug=true or --debug=false

    	Specify debug or release mode. Overrides the `debug` compiler option, if specified in *asconfig.json*.
  • --air PLATFORM

    	Package the project as an Adobe AIR application. The allowed platforms include `android`, `ios`, `windows`, `mac`, `bundle`, and `air`.
  • --storepass PASSWORD

    	The password used when signing and packaging an Adobe AIR application. If not specified, prompts for the password.
  • --clean

    	Clean the output directory. Will not build the project.
  • --unpackage-anes

    	(Advanced) Unpackage native extensions to the output directory when creating a debug build for the Adobe AIR simulator.
  • --verbose

    	(Advanced) Displays more detailed output, including the full set of options passed to all programs.
  • --jvmargs

    	(Advanced) Pass additional options to the Java Virtual Machine when running the compiler.
  • -h or --help

    	Print help message.
  • -v or --version

    	Print the version of `asconfigc`.

Module Usage

The asconfigc build utility may be loaded as a CommonJS module in a Node.js script.

const asconfigc = require("asconfigc");
const args = ["--sdk", sdkPath, "--debug"];
try {
	await asconfigc.buildWithArgs(args);
} catch(e) {
	// the build failed
	console.error(e);
}

Made with Apache Royale

The source code for the asconfigc utility is written in ActionScript. That's right, a utility that runs on Node.js — written in ActionScript and compiled with Apache Royale. Pretty cool, right?

Support this project

The ActionScript & MXML extension for Visual Studio Code and asconfigc are developed by Josh Tynjala with the support of community members like you.

Support Josh Tynjala on Patreon

Special thanks to the following sponsors for their generous support:

1.8.1

3 months ago

1.8.0

9 months ago

1.7.0

1 year ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.14.0

4 years ago

0.13.1

5 years ago

0.13.0

5 years ago

0.12.1

5 years ago

0.12.0

5 years ago

0.11.0

5 years ago

0.10.2

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.0

5 years ago

0.8.0

6 years ago

0.7.0

6 years ago

0.6.10

6 years ago

0.6.9

6 years ago

0.6.8

6 years ago

0.6.7

6 years ago

0.6.6

6 years ago

0.6.5

6 years ago

0.6.4

6 years ago

0.6.3

6 years ago

0.6.2

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.4

6 years ago

0.5.3

7 years ago

0.5.2

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago