Repository: flex-utilities Updated Branches: refs/heads/feature-npm-install eae737d11 -> a565003b7
Add mxmlc support Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/a565003b Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/a565003b Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/a565003b Branch: refs/heads/feature-npm-install Commit: a565003b7c564ad4a2b3ce44fd05eeab9dc133af Parents: eae737d Author: OmPrakash Muppirala <[email protected]> Authored: Mon Jan 4 15:28:16 2016 -0800 Committer: OmPrakash Muppirala <[email protected]> Committed: Mon Jan 4 15:28:16 2016 -0800 ---------------------------------------------------------------------- npm-flexjs/dependencies/ApacheFalcon.js | 8 ++++---- npm-flexjs/package.json | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/a565003b/npm-flexjs/dependencies/ApacheFalcon.js ---------------------------------------------------------------------- diff --git a/npm-flexjs/dependencies/ApacheFalcon.js b/npm-flexjs/dependencies/ApacheFalcon.js index 554d93c..415927d 100644 --- a/npm-flexjs/dependencies/ApacheFalcon.js +++ b/npm-flexjs/dependencies/ApacheFalcon.js @@ -165,12 +165,12 @@ ApacheFalcon.handleFalconMirrorsResponse = function (error, response, body) { var mirrors = JSON.parse(body); var falconPreferredDownloadURL = mirrors.preferred + pathToFalconBinary + fileNameFalconBinary; - console.log('Downloading Apache Falcon'); + console.log('Downloading Apache Flex Falcon Compiler'); request .get(falconPreferredDownloadURL) .pipe(fs.createWriteStream(constants.DOWNLOADS_FOLDER + fileNameFalconBinary) .on('finish', function(){ - console.log('Apache Falcon download complete'); + console.log('Apache Flex Falcon Compiler download complete'); ApacheFalcon.extract(); }) ); @@ -179,11 +179,11 @@ ApacheFalcon.handleFalconMirrorsResponse = function (error, response, body) ApacheFalcon.extract = function() { - console.log('Extracting Apache Falcon'); + console.log('Extracting Apache Flex Falcon Compiler'); fs.createReadStream(constants.DOWNLOADS_FOLDER + fileNameFalconBinary) .pipe(unzip.Extract({ path: constants.DOWNLOADS_FOLDER + 'falcon'}) .on('finish', function(){ - console.log('Apache Falcon extraction complete'); + console.log('Apache Flex Falcon Compiler extraction complete'); ApacheFalcon.prepareForFalconDependencies(); }) ); http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/a565003b/npm-flexjs/package.json ---------------------------------------------------------------------- diff --git a/npm-flexjs/package.json b/npm-flexjs/package.json index 7c6f756..bd3ac59 100644 --- a/npm-flexjs/package.json +++ b/npm-flexjs/package.json @@ -30,6 +30,7 @@ }, "bin": { "asjsc": "./js/bin/asjscnpm", - "asjscompc": "./js/bin/asjscompcnpm" + "asjscompc": "./js/bin/asjscompcnpm", + "mxmlc": "./js/bin/mxmlcnpm" } } \ No newline at end of file
