Skip to content

Commit

Permalink
Merge commit '5b9d937cd5db4d7ed63bbe695671a4857e6abda6' into 00711-D-…
Browse files Browse the repository at this point in the history
…google-storage
  • Loading branch information
JeffreyDallas committed Jan 7, 2025
2 parents 45f0969 + 5b9d937 commit f29bdf6
Show file tree
Hide file tree
Showing 28 changed files with 1,033 additions and 1,016 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/flow-task-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,6 @@ jobs:
verbosity: 3
wait: 120s

- name: Install Dependencies
id: npm-deps
run: npm ci

- name: Compile Project
run: npm run build

- name: Run Example Task File Test
run: |
task default-with-relay
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxc-update-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
if : ${{ github.event.inputs.dry-run-enabled != 'true' && !cancelled() && !failure() && inputs.commit-changes }}
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
with:
commit_message: "auto update docs/content/User/StepByStepGuide.md [skip ci]"
commit_message: "chore: auto update docs/content/User/StepByStepGuide.md"
commit_options: '--no-verify --signoff'
add_options: '-u'
file_pattern: 'docs/content/User/StepByStepGuide.md'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ expected to uphold this code of conduct.

## License

[Apache License 2.0](LICENSE)
[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
1 change: 1 addition & 0 deletions Taskfile.helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ env:
tasks:
init:
cmds:
- task: "install:solo"
- task: "var:check"
- task: "run:build"

Expand Down
1 change: 0 additions & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ tasks:
- echo "This command is meant to deploy a Solo network to a Kind cluster on your local machine, "
- echo "ctrl-c if this is not what you want to do."
- sleep 5
- task: "install:solo"
- task: "install"
- task: "start"

Expand Down
4 changes: 2 additions & 2 deletions docs/content/User/SDK.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Using Solo with Hedera JavaScript SDK

First, please follow solo repository README to install solo and Docker Desktop.
You also need to install the Taskfile tool following the instructions here:
https://taskfile.dev/installation/
You also need to install the Taskfile tool following the instructions [here](https://taskfile.dev/installation/).


Then we start with launching a local Solo network with the following commands:

Expand Down
6 changes: 5 additions & 1 deletion docs/layouts/_default/_markup/render-link.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
{{ $destination := .Destination }}
{{ if strings.HasPrefix $destination "http" }}
<a href="{{ $destination | safeURL }}"{{ with .Title }} title="{{ .Title }}"{{ end }} target="_blank" rel="noopener noreferrer">{{ .Text | safeHTML }}</a>
{{ else }}
<a href="{{ (.Page.GetPage .Destination).RelPermalink | safeURL }}">{{ .Text | safeHTML }}</a>

{{ end }}
1 change: 0 additions & 1 deletion examples/Taskfile.examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ tasks:
cmds:
- task: "install:kubectl:darwin"
- task: "install:kubectl:linux"
- task: "install:solo"
- task: "install"
- task: "start"

Expand Down
142 changes: 89 additions & 53 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/utils": "^8.19.0",
"@typescript-eslint/utils": "^8.19.1",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
Expand Down Expand Up @@ -134,7 +134,7 @@
"tsx": "^4.19.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
"typescript-eslint": "^8.19.1"
},
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions src/commands/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ export abstract class BaseCommand extends ShellRunner {
return this.configManager;
}

getChartManager(): ChartManager {
return this.chartManager;
}

/**
* Dynamically builds a class with properties from the provided list of flags
* and extra properties, will keep track of which properties are used. Call
Expand Down Expand Up @@ -171,6 +175,10 @@ export abstract class BaseCommand extends ShellRunner {
return newConfigInstance;
}

getLeaseManager(): LeaseManager {
return this.leaseManager;
}

/**
* Get the list of unused configurations that were not accessed
* @returns an array of unused configurations
Expand Down
Loading

0 comments on commit f29bdf6

Please sign in to comment.