Comparing version 0.0.248 to 0.0.249
{ | ||
"name": "xone", | ||
"version": "0.0.248", | ||
"version": "0.0.249", | ||
"description": "Open source Javascript framework for building modern web applications.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -39,3 +39,3 @@  | ||
### Update existing Xone project (fetch from _global npm_modules_ installation) | ||
### Update existing Xone project (fetches from _global npm_modules_ installation) | ||
Fetch update: | ||
@@ -57,8 +57,18 @@ ```bash | ||
### Update existing Xone project (fetch from a _local npm_modules_ installation) | ||
Show global installed Xone version: | ||
```bash | ||
> xone version --global | ||
``` | ||
Show local installed Xone version: | ||
```bash | ||
> xone version --local | ||
``` | ||
Update existing Xone project (fetch from a _local npm_modules_ installation): | ||
```bash | ||
path\to\my\workspace\my_project> xone install local | ||
``` | ||
### Update existing Xone project (fetch from any _custom_ location) | ||
Update existing Xone project (fetch from any _custom_ location): | ||
```bash | ||
@@ -68,8 +78,24 @@ path\to\my\workspace\my_project> xone install /lib/xone_0.2.1/ | ||
### Manage local _npm_module_ of xone (without using _Xone CLI_): | ||
Install Xone locally: | ||
```bash | ||
path\to\my\workspace\my_project> npm install xone | ||
``` | ||
Create new Xone project: | ||
```bash | ||
path\to\my\workspace\my_project> node node_modules\xone\task\create . | ||
``` | ||
Update existing Xone project: | ||
```bash | ||
path\to\my\workspace\my_project> node node_modules\xone\task\install | ||
``` | ||
__Note:__ In addition to at least one global installation to make the _Xone CLI_ available. | ||
Alternatively you can skip the global installation and call the node binaries located in the _xone/task/_ folder directly within your current Xone project. | ||
Check Xone installation path (example): | ||
Alternatively you can call the node binaries located in the _xone/task/_ folder directly. | ||
Check Xone installation (example): | ||
```bash | ||
path\to\lib\xone_0.2.1> node task/version | ||
path\to\my\lib\xone_0.2.1> node task/version | ||
``` | ||
@@ -84,3 +110,3 @@ | ||
```bash | ||
path\to\my\workspace\my_project> node ../../lib/xone_0.2.1/task/install | ||
path\to\my\workspace\my_project> node ../lib/xone_0.2.1/task/install | ||
``` | ||
@@ -87,0 +113,0 @@ |
751659
183