From 8a2ed25146c4c074929713ea7316629b63ffa73f Mon Sep 17 00:00:00 2001 From: Mariusz Kogen Date: Mon, 19 Dec 2022 02:36:46 +0100 Subject: [PATCH] Deno link fix and version bump (#229) --- site/source/developer-docs/specification/js-procedure.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/source/developer-docs/specification/js-procedure.rst b/site/source/developer-docs/specification/js-procedure.rst index 96dec58..c030a2d 100644 --- a/site/source/developer-docs/specification/js-procedure.rst +++ b/site/source/developer-docs/specification/js-procedure.rst @@ -30,7 +30,7 @@ Terms: **Procedure**: A procedure is run during times that we would like to do an operation. An operation would include actions such as getting or setting a service's configuration file. -**Effects**: A TypeScript object that is used to interact with embassyOS. See the `full definition here `__. +**Effects**: A TypeScript object that is used to interact with embassyOS. See the `full definition here `__. This new process enabled faster service configuration operations. Previously, Docker was used to preform these actions; however, Docker containers took a long time to spin up. @@ -44,7 +44,7 @@ How to Setup .. code:: javascript - import { types as T } from "https://deno.land/x/embassyd_sdk@v0.3.1.0.5/mod.ts"; + import { types as T } from "https://deno.land/x/embassyd_sdk@v0.3.3.0.5/mod.ts"; /** Anywhere this exists one needs to implement */ let todo: any; @@ -73,7 +73,7 @@ How to Setup set: type: script -4. Fill in the todos in the above template to match the expected Effect parameter defined by the `exported type `_. This type describes how to call functions that interact with embassyOS. +4. Fill in the todos in the above template to match the expected Effect parameter defined by the `exported type `_. This type describes how to call functions that interact with embassyOS. 5. In the build process for packaging the final s9pk, include the following step. **The location of the js is important, and can't be changed**. It must exist at `scripts/embassy.js` in the root of the project's wrapper repository. .. code:: bash @@ -94,4 +94,4 @@ This one is the most complex, we replaced all the running rust with a js functio - `Manifest `__ -- `Procedures `__ \ No newline at end of file +- `Procedures `__