Skip to content

Commit

Permalink
chore: bump sdk version (#63)
Browse files Browse the repository at this point in the history
## Why?

Clear and short explanation here.

## How?

- Done A (replace with a breakdown of the steps)
- Done B
- Done C

## Tickets?

- [Ticket 1](the-ticket-url-here)
- [Ticket 2](the-ticket-url-here)
- [Ticket 3](the-ticket-url-here)

## Contribution checklist?

- [ ] The commit messages are detailed
- [ ] The `build` command runs locally
- [ ] Assets or static content are linked and stored in the project
- [ ] You have manually tested
- [ ] You have provided tests

## Security checklist?

- [ ] Sensitive data has been identified and is being protected properly
- [ ] Injection has been prevented (parameterized queries, no eval or
system calls)

## Preview?

Optionally, provide the preview url here

---------

Co-authored-by: GitHub Action <[email protected]>
  • Loading branch information
gabrielmpinto and actions-user authored Nov 2, 2024
1 parent f1f6f80 commit 33a4ba6
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 20 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.6",
"@fleek-platform/errors": "^2.7.0",
"@fleek-platform/sdk": "^3.5.1",
"@fleek-platform/tester": "^2.11.1",
"@fleek-platform/sdk": "^3.5.2",
"@fleek-platform/tester": "^2.12.1",
"@fleek-platform/utils-gateways": "^0.1.12",
"@fleek-platform/utils-github": "^0.0.2",
"@fleek-platform/utils-ipfs": "^0.4.4",
"@fleek-platform/utils-ipns": "^0.1.12",
"@fleek-platform/utils-ipns": "^0.1.13",
"@fleek-platform/utils-validation": "^2.4.0",
"@tsconfig/node16": "^16.1.3",
"@types/ansi-escapes": "3.0.1",
Expand Down
76 changes: 60 additions & 16 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/functions/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const createAction: SdkGuardedFunction<CreateFunctionArgs> = async ({
}) => {
const { name, siteId } = args;
const functionName = await getFunctionNameOrPrompt({ name });

if (siteId && !(await isSiteIdValid({ siteId: siteId as string, sdk }))) {
output.error(t('siteNotFound'));
return;
Expand Down

0 comments on commit 33a4ba6

Please sign in to comment.