We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4224576 commit e743867Copy full SHA for e743867
3 files changed
.github/workflows/ci-javascript.yaml
@@ -155,6 +155,7 @@ jobs:
155
- name: Examples
156
run: |
157
cd examples
158
+ yarn
159
yarn run:hello-world
160
yarn run:fs
161
yarn run:http
.gitignore
@@ -23,4 +23,5 @@ polywrap.deployment.txt
23
**/.pytest_cache/
24
**/__pycache__/
25
**/dist/
26
-poetry.lock
+poetry.lock
27
+examples/yarn.lock
examples/README.md
@@ -1,5 +1,7 @@
1
# Polywrap JS Client Examples
2
3
+Before running any example you must run `yarn` in the `examples` folder
4
+
5
## Hello World
6
7
Invokes the logger wrap, which interacts with the logger plugin. It shows a console.log message from WASM world
0 commit comments