Skip to content

Commit

Permalink
Tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Oct 2, 2023
1 parent e5942bf commit f90b87c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
17 changes: 9 additions & 8 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 @@ -39,7 +39,7 @@ pathdiff = "0.2.1"
petgraph = { version = "0.6.4", default-features = false, features = [
"serde-1",
] }
proto_core = "0.19.0"
proto_core = "0.19.2"
relative-path = { version = "1.9.0", features = ["serde"] }
regex = "1.9.5"
reqwest = { version = "0.11.20", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/commands/docker/scaffold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ fn scaffold_sources_project(

for file in glob::walk_files(
&project.root,
["**/*", "!**/node_modules/**", "!target/**/*"],
["**/*", "!node_modules/**", "!target/**/*", "!vendor/**"],
)? {
fs::copy_file(
&file,
Expand Down
1 change: 1 addition & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#### 🐞 Fixes

- Fixed an issue where `moon docker scaffold` was too greedy and would copy files it shouldn't.
- Fixed some `PATH` inconsistencies when executing npm/pnpm/yarn binaries.
- Fixed codegen `lower_case` and `upper_case` stripping characters.

Expand Down

0 comments on commit f90b87c

Please sign in to comment.