Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: 📝 Update Bundle parameter syntax #230

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/actions/spell-checker/ignore_words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
2fa
8f
8fdevelop
abi
abtesting
ach
activedirectory
Expand Down Expand Up @@ -182,9 +183,9 @@ ipaddress
ipfs
ipns
iq
ir
iran
iraq
ir
isr
january
javascript
Expand Down Expand Up @@ -262,8 +263,8 @@ object-oriented
objects
ofac
ok
onboarding
onboarded
onboarding
onchain
online
openssl
Expand Down Expand Up @@ -343,9 +344,9 @@ roguelike
rollup
rollups
rsa
ru
ruby
russia
ru
s3
saml
sandbox
Expand Down Expand Up @@ -409,11 +410,11 @@ sunsetting
svg
swift
swiss
sy
syria
syslog
system-admin
systemctl
sy
table
tag
tags
Expand Down Expand Up @@ -517,4 +518,4 @@ zendesk's
zero-trust
zimbabwe
zip
zw
zw
5 changes: 4 additions & 1 deletion src/content/guides/fleek-functions-http-types/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ fleek functions create --name fleek-function-types
6. Then you deploy the function:

```bash
fleek functions deploy --name fleek-function-types --noBundle --path bundle.js
fleek functions deploy \
--name fleek-function-types \
--path bundle.js \
--bundle false
```

For more insights on creating and deploying a Fleek Function, you can check <u>[here.](https://fleek.xyz/docs/cli/functions/#create-a-fleek-function)</u> After the above steps, you should have something similar to what was outlined above. The `main` function should perform as expected.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ Where “websocket-function” is the name of our Fleek Function. The command to
```jsx
fleek functions deploy \
--name websocket-function \
--path ./dist/bundle.js --noBundle
--path ./dist/bundle.js \
--bundle false
```

Where “websocket-function” is the name of our Fleek Function and “./dist.bundle.js” is the path to the bundled file created by webpack when we bundled, If all the steps above go well, you should have:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ Where “bundled-function” is the name of our Fleek function. The command to d
```
fleek functions deploy \
--name bundled-function \
--path ./dist/bundle.js --noBundle
--path ./dist/bundle.js \
--bundle false
```

Where `bundled-function` is the name of our Fleek Function and `./dist.bundle.js` is the path to the bundled file created by webpack when we bundled, If all the steps above go well, you should have:
Expand Down
Loading