netlify-cli 16.3.3 → 16.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
- "version": "16.3.3",
3
+ "version": "16.3.4",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "netlify-cli",
9
- "version": "16.3.3",
9
+ "version": "16.3.4",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "16.3.3",
4
+ "version": "16.3.4",
5
5
  "author": "Netlify Inc.",
6
6
  "type": "module",
7
7
  "engines": {
@@ -79,7 +79,7 @@ const getDeployFolder = async ({ command, config, options, site, siteData }) =>
79
79
  // - in mono repositories this will be the root of the jsWorkspace
80
80
  if (options.dir) {
81
81
  deployFolder = command.workspacePackage
82
- ? resolve(command.jsWorkspaceRoot || site.root)
82
+ ? resolve(command.jsWorkspaceRoot || site.root, options.dir)
83
83
  : resolve(command.workingDir, options.dir)
84
84
  } else if (config?.build?.publish) {
85
85
  deployFolder = resolve(site.root, config.build.publish)