Skip to content
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

Merged
merged 17 commits into from
Jun 28, 2021
Merged

feat: monorepo handling #434

merged 17 commits into from
Jun 28, 2021

Conversation

ascorbic
Copy link
Contributor

@ascorbic ascorbic commented Jun 23, 2021

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.

@ascorbic ascorbic marked this pull request as draft June 23, 2021 11:33
@ascorbic ascorbic requested a review from lindsaylevine June 23, 2021 11:33
@ascorbic ascorbic added monorepo type: feature code contributing to the implementation of a feature and/or user facing functionality labels Jun 23, 2021
@ascorbic ascorbic mentioned this pull request Jun 23, 2021
7 tasks
)
}

const expectedConfigFile = path.resolve(netlifyConfig.build.publish, '..', 'next.config.js')

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 })
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clean

@ascorbic ascorbic force-pushed the monorepo-weirdness branch from 3ba9d65 to bdd9bee Compare June 25, 2021 10:08
@ascorbic ascorbic changed the title wip: monorepo handling feat: monorepo handling Jun 25, 2021
@ascorbic ascorbic marked this pull request as ready for review June 25, 2021 13:34
@ascorbic ascorbic requested a review from rstavchansky June 25, 2021 13:40
Copy link

@lindsaylevine lindsaylevine left a 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 })
}

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

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')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

didnt want resolveNextModule here?

Copy link
Contributor Author

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="."

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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔥 this is so great!!!!!

@ascorbic ascorbic merged commit e920cc6 into main Jun 28, 2021
@ascorbic ascorbic deleted the monorepo-weirdness branch June 28, 2021 14:28
@pzi
Copy link

pzi commented Jun 30, 2021

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: feature code contributing to the implementation of a feature and/or user facing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants