Skip to content

Commit

Permalink
Update package versions and SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrov-d committed Dec 2, 2024
1 parent ce780de commit f59e442
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,6 @@ Upload contents of a local folder to specified bucket.
- `-b, --bucket-uuid <string>`: UUID of the bucket to upload files to.
- `-w, --wrap`: Wrap uploaded files to an IPFS directory
- `-p, --path <string>`: Path to upload files to (e.g. main/subdir). Required when --wrap is supplied.
- `--await`: await file CIDs to be resolved

**Example**

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@apillon/cli",
"description": "▶◀ Apillon CLI tools ▶◀",
"version": "1.5.0",
"version": "1.6.0",
"author": "Apillon",
"license": "MIT",
"main": "./dist/index.js",
Expand Down
5 changes: 4 additions & 1 deletion packages/cli/src/modules/storage/storage.commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ export function createStorageCommands(cli: Command) {
.requiredOption('-b, --bucket-uuid <uuid>', 'UUID of destination bucket')
.option('-w, --wrap', 'Wrap uploaded files to an IPFS directory')
.option('-p, --path <string>', 'Path to upload files to')
.option('--await', 'await file CIDs to be resolved')
.option(
'--await',
'await file CIDs to be resolved (DEPRECATED - CIDs are now resolved automatically)',
)
.option('--ignore', 'ignore files from .gitignore file')
.action(async function (path: string) {
await uploadFromFolder(path, this.optsWithGlobals());
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@apillon/sdk",
"description": "▶◀ Apillon SDK for NodeJS ▶◀",
"version": "3.6.0",
"version": "3.7.0",
"author": "Apillon",
"license": "MIT",
"main": "./dist/index.js",
Expand Down

0 comments on commit f59e442

Please sign in to comment.