Skip to content

Commit

Permalink
replace gitlens with ungit
Browse files Browse the repository at this point in the history
- install ungit version 1.5.25
- remove gitlens
- update s/w list in README
  • Loading branch information
capsulecorplab committed Apr 1, 2024
1 parent c77f504 commit 8ea2336
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This repo provides an Immutable-Infrastructure-as-Code (IIaC) workspace for the
- yarn v3.5.0
- oclif v3.10.0
- [cli-njk](https://github.com/elcharitas/cli-njk) v1.0.0
- [ungit](https://github.com/FredrikNoren/ungit) 1.5.25
- git cli
- [Keychain](https://www.funtoo.org/Keychain)
- Firefox
Expand All @@ -32,7 +33,6 @@ This repo provides an Immutable-Infrastructure-as-Code (IIaC) workspace for the
- VS Code with the following extensions (note, auto-updates are disabled)
- [Python extension by Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- [Dendron](https://marketplace.visualstudio.com/items?itemName=dendron.dendron)
- [GitLens](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)
- Artifact Generators
- [PlantUML](https://plantuml.com/)
- JDK v11
Expand Down
14 changes: 13 additions & 1 deletion playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@
oclif_version: "4.3.6"
typescript_version: "5.1.3"
cli_njk_version: "1.0.0"
ungit_version: "1.5.25"

tasks: # Test Node JS Tools versions
- name: Install Yarn
Expand All @@ -243,6 +244,9 @@
- name: Get cli-njk version
shell: njk --version
register: installed_cli_njk_version
- name: Get ungit version
shell: ungit --version
register: installed_ungit_version
- name: Display node tool versions
debug:
msg: "Node = {{ installed_node_version.stdout }} | npm = {{ installed_npm_version.stdout }} | npx = {{ installed_npx_version.stdout }} | yarn = {{ installed_yarn_version.stdout }}"
Expand All @@ -252,6 +256,9 @@
- name: Display cli-njk version
debug:
msg: "cli-njk = {{ installed_cli_njk_version.stdout }}"
- name: Display ungit version
debug:
msg: "ungit = {{ installed_ungit_version.stdout }}"
- name: Test node version
fail:
msg: "NodeJS Version Error: Expected {{ v_node_version }} | Found {{ installed_node_version.stdout }}"
Expand Down Expand Up @@ -281,6 +288,10 @@
fail:
msg: "cli-njk Version Error: Expected {{ cli_njk_version }} | Found {{ installed_cli_njk_version.stdout }}"
when: installed_cli_njk_version.stdout != cli_njk_version
- name: Test ungit version
fail:
msg: "ungit Version Error: Expected {{ ungit_version }} | Found {{ installed_ungit_version.stdout }}"
when: installed_ungit_version.stdout != ungit_version

roles:
- role: grzegorznowak.nvm_node
Expand All @@ -297,6 +308,8 @@
version: "{{ typescript_version }}"
- name: cli-njk
version: "{{ cli_njk_version }}"
- name: ungit
version: "{{ ungit_version }}"

-
# install fprime tools
Expand Down Expand Up @@ -746,7 +759,6 @@
visual_studio_code_extensions:
- ms-python.python
- dendron.dendron
- eamodio.gitlens
visual_studio_code_settings_overwrite: yes
visual_studio_code_settings: {
"extensions.ignoreRecommendations": true,
Expand Down

0 comments on commit 8ea2336

Please sign in to comment.