-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: monorepo handling #434
Conversation
) | ||
} | ||
|
||
const expectedConfigFile = path.resolve(netlifyConfig.build.publish, '..', 'next.config.js') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥴
|
||
if (isNx) { | ||
checkNxConfig({ netlifyConfig, packageJson, nextConfig, failBuild, constants }) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clean
Co-authored-by: lindsaylevine <[email protected]>
3ba9d65
to
bdd9bee
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be so great to let the monorepo issue watchers know about this!!! is there any way to write tests for this or is the "using the monorepo support in our repo/for the demo site" thing enough with the e2e test setup?
paths.unshift(nextRoot) | ||
// ...then resolve the module using that list of paths. | ||
return require.resolve(module, { paths }) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh my
@@ -32,19 +37,24 @@ const build = async (functionsPath, publishPath) => { | |||
|
|||
setupHeaders(publishPath) | |||
|
|||
// ...and move back after |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:D
@@ -1,9 +1,8 @@ | |||
const { PHASE_PRODUCTION_BUILD } = require('next/constants') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
didnt want resolveNextModule here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nah. For a test fixture it was going to be a big pain to pass-through all the config stuff
command="npm run dev:demo" | ||
|
||
[[plugins]] | ||
package="." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wowee
netlify.toml | ||
package.json | ||
``` | ||
If you have another monorepo tool that you are using, we would welcome PRs to add instructions to this document. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 this is so great!!!!!
Awesome, thanks heaps for this. Really appreciate it and the updated docs. I may give lerna another shot when I work on my side-project again and let you know how I go. |
This PR adds support for monorepos to the plugin. Currently we only support building from subdirectories if they can be set as the base directory, and all packages can be installed from that root. This adds support for building sites in subdirectories, where the base is kept as the root. This means we can support most types of monorepo, including yarn workspaces and lerna. This PR also adds special handling for Nx sites, which do lots of strange magic with Next.js sites. We detect them specifically and check that the site is configured correctly.
For more details, see the included docs.
There are a number of places where I would like to add links to these docs. I will create a ntl.fyi shortlink once these are published, and then do a new PR to add the links to the error messages.
More info: #433. This is option 4.