Skip to content

Commit

Permalink
Merge branch 'main' into feat/custom-route-exclusive
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoboucas authored Sep 18, 2023
2 parents c46ce67 + 25d5b3d commit 556d545
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [16.3.4](https://github.com/netlify/cli/compare/v16.3.3...v16.3.4) (2023-09-18)


### Bug Fixes

* fixes an issue where the provided --dir flag was not used ([#6001](https://github.com/netlify/cli/issues/6001)) ([8c537ad](https://github.com/netlify/cli/commit/8c537ad6787b23c683eeb91dbea2fc48c37a3c4b)), closes [#6000](https://github.com/netlify/cli/issues/6000)

## [16.3.3](https://github.com/netlify/cli/compare/v16.3.2...v16.3.3) (2023-09-15)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "netlify-cli",
"description": "Netlify command line tool",
"version": "16.3.3",
"version": "16.3.4",
"author": "Netlify Inc.",
"type": "module",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/deploy/deploy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const getDeployFolder = async ({ command, config, options, site, siteData }) =>
// - in mono repositories this will be the root of the jsWorkspace
if (options.dir) {
deployFolder = command.workspacePackage
? resolve(command.jsWorkspaceRoot || site.root)
? resolve(command.jsWorkspaceRoot || site.root, options.dir)
: resolve(command.workingDir, options.dir)
} else if (config?.build?.publish) {
deployFolder = resolve(site.root, config.build.publish)
Expand Down

0 comments on commit 556d545

Please sign in to comment.