Skip to content

Commit

Permalink
fix: Fix glob with leading ./. (#1535)
Browse files Browse the repository at this point in the history
fix: Fix glob with leading ./.
  • Loading branch information
milesj authored Jun 30, 2024
1 parent 35ae27a commit 53e25be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .moon/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ projects:
# moon: '.'
sources: {}
globs:
- 'packages/*'
- './packages/*'
- '!packages/cli'
- '!packages/core-*'
- 'website'
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ starbase_events = "0.6.2"
starbase_sandbox = "0.6.3"
starbase_shell = "0.2.5"
starbase_styles = { version = "0.4.1", features = ["relative-path"] }
starbase_utils = { version = "0.7.6", default-features = false, features = [
starbase_utils = { version = "0.7.7", default-features = false, features = [
"editor-config",
"glob",
"json",
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

#### 🐞 Fixes

- Fixed an issue where globs wouldn't match when leading with `./`.

## 1.26.4

#### 🐞 Fixes
Expand Down

0 comments on commit 53e25be

Please sign in to comment.