Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IlanCosman committed Jan 25, 2024
1 parent d220b9d commit d8d07f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## [v6.2.0][] (Jan 23 2024)
## [v6.2.0][] (???)

### Features

- Add a new `bun` item.
- Add a new `bun` item ([#485][] - @will-stone)

## [v6.1.1][] (Dec 27 2023)

Expand Down Expand Up @@ -585,6 +585,7 @@
[#470]: https://github.com/IlanCosman/tide/issues/470
[#472]: https://github.com/IlanCosman/tide/issues/472
[#474]: https://github.com/IlanCosman/tide/issues/474
[#485]: https://github.com/IlanCosman/tide/issues/485
[prettier action]: https://github.com/actionsx/prettier
[super-linter]: https://github.com/github/super-linter
[v1.0.0]: https://github.com/IlanCosman/tide/tree/v1.0.0
Expand Down
4 changes: 1 addition & 3 deletions functions/_tide_item_node.fish
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
function _tide_item_node
if path is $_tide_parent_dirs/package.json and
# If Bun is detected assume that is being used over node
not path is $_tide_parent_dirs/bun.lockb
if path is $_tide_parent_dirs/package.json
node --version | string match -qr "v(?<v>.*)"
_tide_print_item node $tide_node_icon' ' $v
end
Expand Down
2 changes: 1 addition & 1 deletion functions/tide.fish
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function tide --description 'Manage your Tide prompt'
argparse --stop-nonopt v/version h/help -- $argv

if set -q _flag_version
echo 'tide, version 6.2.0'
echo 'tide, version 6.1.1'
else if set -q _flag_help
_tide_help
else if functions --query _tide_sub_$argv[1]
Expand Down

0 comments on commit d8d07f8

Please sign in to comment.