From 16daed6eb16cf170067b30808a7f1e87d449adca Mon Sep 17 00:00:00 2001 From: DieMyst Date: Wed, 8 Sep 2021 13:31:23 +0300 Subject: [PATCH] aqua-cli to aqua --- building-a-frontend-with-js-sdk.md | 4 ++-- tutorials_tutorials/building-a-frontend-with-js-sdk.md | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/building-a-frontend-with-js-sdk.md b/building-a-frontend-with-js-sdk.md index 154f14f..d570a69 100644 --- a/building-a-frontend-with-js-sdk.md +++ b/building-a-frontend-with-js-sdk.md @@ -119,7 +119,7 @@ Aqua is the proffered language for the Fluence network. It can be used with java **Warning: the package requires java to be installed \(it will call "java -jar ... "\)** ```bash -npm install --save-dev @fluencelabs/aqua-cli +npm install --save-dev @fluencelabs/aqua ``` We will also need the standard library for the language @@ -163,7 +163,7 @@ The aqua code can now be compiled by using the compiler CLI. We suggest adding a ... "scripts": { "exec": "node -r ts-node/register src/index.ts", - "compile-aqua": "aqua-cli -i ./aqua/ -o ./src/compiled" + "compile-aqua": "aqua -i ./aqua/ -o ./src/compiled" }, ... ``` diff --git a/tutorials_tutorials/building-a-frontend-with-js-sdk.md b/tutorials_tutorials/building-a-frontend-with-js-sdk.md index af41996..bffabcb 100644 --- a/tutorials_tutorials/building-a-frontend-with-js-sdk.md +++ b/tutorials_tutorials/building-a-frontend-with-js-sdk.md @@ -114,12 +114,8 @@ $ Aqua is the proffered language for the Fluence network. It can be used with javascript-based environments via npm package. -{% hint style="warning" %} -**The package requires java to be installed as it calls "java -jar ... "** -{% endhint %} - ```bash -npm install --save-dev @fluencelabs/aqua-cli +npm install --save-dev @fluencelabs/aqua ``` We will also need the standard library for the language @@ -163,7 +159,7 @@ The aqua code can now be compiled by using the compiler CLI. We suggest adding a ... "scripts": { "exec": "node -r ts-node/register src/index.ts", - "compile-aqua": "aqua-cli -i ./aqua/ -o ./src/compiled" + "compile-aqua": "aqua -i ./aqua/ -o ./src/compiled" }, ... ```