@gapi/gcli 1.8.208 → 1.8.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/build.js +1 -0
- package/package.json +1 -1
- package/release/index.js +15 -2333
package/README.md
CHANGED
|
@@ -347,3 +347,11 @@ For a complete list of commands and options, use the built-in help:
|
|
|
347
347
|
gcli --help
|
|
348
348
|
gcli lambda:create --help
|
|
349
349
|
```
|
|
350
|
+
|
|
351
|
+
## Running in WebContainer using wasm
|
|
352
|
+
|
|
353
|
+
Install `esbuild-wasm` dependency inside your package.json if the project will be running in WebContainer
|
|
354
|
+
|
|
355
|
+
```bash
|
|
356
|
+
npm install esbuild-wasm
|
|
357
|
+
```
|
package/build.js
CHANGED