Skip to content

Commit e441c97

Browse files
Louis DeScioliascorbic
Louis DeScioli
andauthored
fix: use correct publishDir when building from CLI with cwd option (#1264)
* fix: print full publish dir path when build not found * fix: resolve PUBLISH_DIR instead of join with cwd * chore: snapidoo * chore: snapshot Co-authored-by: Matt Kane <[email protected]>
1 parent b434021 commit e441c97

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/helpers/functions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NetlifyConfig, NetlifyPluginConstants } from '@netlify/build'
22
import bridgeFile from '@vercel/node-bridge'
33
import { copyFile, ensureDir, writeFile, writeJSON } from 'fs-extra'
44
import type { ImageConfigComplete } from 'next/dist/server/image-config'
5-
import { join, relative } from 'pathe'
5+
import { join, relative, resolve } from 'pathe'
66

77
import { HANDLER_FUNCTION_NAME, ODB_FUNCTION_NAME, IMAGE_FUNCTION_NAME, DEFAULT_FUNCTIONS_SRC } from '../constants'
88
import { getHandler } from '../templates/getHandler'
@@ -14,7 +14,7 @@ export const generateFunctions = async (
1414
): Promise<void> => {
1515
const functionsDir = INTERNAL_FUNCTIONS_SRC || FUNCTIONS_SRC
1616
const functionDir = join(process.cwd(), functionsDir, HANDLER_FUNCTION_NAME)
17-
const publishDir = relative(functionDir, join(process.cwd(), PUBLISH_DIR))
17+
const publishDir = relative(functionDir, resolve(PUBLISH_DIR))
1818

1919
const writeHandler = async (func: string, isODB: boolean) => {
2020
const handlerSource = await getHandler({ isODB, publishDir, appDir: relative(functionDir, appDir) })

src/helpers/verification.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ export const checkNextSiteHasBuilt = ({
6868
: `In most cases it should be set to ".next", unless you have chosen a custom "distDir" in your Next config.`
6969

7070
return failBuild(outdent`
71-
The directory "${path.relative(
72-
process.cwd(),
73-
publish,
74-
)}" does not contain a Next.js production build. Perhaps the build command was not run, or you specified the wrong publish directory.
71+
The directory "${publish}" does not contain a Next.js production build. Perhaps the build command was not run, or you specified the wrong publish directory.
7572
${outWarning}
7673
If you are using "next export" then you should set the environment variable NETLIFY_NEXT_PLUGIN_SKIP to "true".
7774
`)
@@ -93,7 +90,7 @@ export const checkForRootPublish = ({
9390
}): void | never => {
9491
if (path.resolve(publish) === path.resolve('.')) {
9592
failBuild(outdent`
96-
Your publish directory is pointing to the base directory of your site. This is not supported for Next.js sites, and is probably a mistake.
93+
Your publish directory is pointing to the base directory of your site. This is not supported for Next.js sites, and is probably a mistake.
9794
In most cases it should be set to ".next", unless you have chosen a custom "distDir" in your Next config, or the Next site is in a subdirectory.
9895
`)
9996
}

0 commit comments

Comments
 (0)