Comparing version 1.0.0-0.4.0 to 1.0.0-0.5.0
{ | ||
"name": "cocoonjs", | ||
"version": "1.0.0-0.4.0", | ||
"version": "1.0.0-0.5.0", | ||
"preferGlobal": "true", | ||
@@ -5,0 +5,0 @@ "description": "CocoonJS command line tool", |
@@ -22,3 +22,4 @@ # CocoonJS Command Line tools # | ||
``` | ||
$ cocoonjs create /path/ com.ludei.test LudeiTest | ||
$ cocoonjs create MyProject com.ludei.test LudeiTest | ||
$ cd MyProject | ||
$ cocoonjs platform add android | ||
@@ -25,0 +26,0 @@ $ cocoonjs plugin add com.ludei.webview.plus |
@@ -304,3 +304,3 @@ var shell = require('shelljs'), | ||
env_vars += ("set CORDOVA_PATH_BINARY='" + new Buffer(CORDOVA_CMD_PATH).toString('base64') +"' & "); | ||
env_vars += ("set CORDOVA_VERSION='" + new Buffer(CORDOVA_VERSION).toString('base64') +"' & "); | ||
env_vars += ("set CORDOVA_CUSTOM_VERSION='" + new Buffer(CORDOVA_VERSION).toString('base64') +"' & "); | ||
env_vars += ("set CORDOVA_PROJECT_NAME='" + new Buffer(CORDOVA_PROJECT_NAME).toString('base64') +"' & "); | ||
@@ -310,3 +310,3 @@ env_vars += ("set CORDOVA_PLUGIN_PATH='" + new Buffer(CORDOVA_PLUGIN_PATH).toString('base64') +"' & "); | ||
env_vars += ("export CORDOVA_PATH_BINARY='" + new Buffer(CORDOVA_CMD_PATH).toString('base64') +"' && "); | ||
env_vars += ("export CORDOVA_VERSION='" + new Buffer(CORDOVA_VERSION).toString('base64') +"' && "); | ||
env_vars += ("export CORDOVA_CUSTOM_VERSION='" + new Buffer(CORDOVA_VERSION).toString('base64') +"' && "); | ||
env_vars += ("export CORDOVA_PROJECT_NAME='" + new Buffer(CORDOVA_PROJECT_NAME).toString('base64') +"' && "); | ||
@@ -313,0 +313,0 @@ env_vars += ("export CORDOVA_PLUGIN_PATH='" + new Buffer(CORDOVA_PLUGIN_PATH).toString('base64') +"' && "); |
29456
63