build icon indicating copy to clipboard operation
build copied to clipboard

Netlify Build (node process) runs the build command, Build Plugins and bundles Netlify Functions. Can be run in Buildbot or locally using Netlify CLI

Results 204 build issues
Sort by recently updated
recently updated
newest added

My builds appear to be crashing due to a symlink supposedly not existing: ```sh 10:01:19 AM: > ENOENT: no such file or directory, stat '/opt/build/repo/site/static/assets' ``` [It points from one...

type: bug

**Which problem is this feature request solving?** Support Netlify's `_headers` files where `@netlify/config` package is used. **Describe the solution you'd like** We parse the `_headers` file and merge the rules...

type: feature
feat/build-plugins
theme/plugin-author-experience

Users can enable the following core plugin in their `netlify.toml`: ```toml [[plugins]] package = "@netlify/plugin-local-install-core" ``` When enabled, `npm install` or `yarn` is run inside each local plugin's directory. More...

type: chore

This is due to a bug in AVA. I've reported it here: https://github.com/avajs/ava/issues/2311

type: bug

Plugins can report errors with: ```js utils.build.failBuild('error message') ``` or: ```js // `error` helps keep the inner error's stack trace utils.build.failBuild('error message', { error: innerError }) ``` Same with `utils.build.failPlugin()`...

type: feature
feat/build-plugins
feat/builds
theme/plugin-author-experience

Build speed is very important to our users. Should be run plugins in parallel by default? The following would still happen serially: - lifecycle hooks, e.g. anything triggered in `build`...

Discussion
type: feature
feat/build-plugins
feat/speedy-builds
theme/plugin-author-experience
theme/plugin-user-experience

**Which problem is this feature request solving?** https://github.com/netlify/build/pull/2190 added new parameters for overriding the API URL used by `@netlify/config`. However, the test suite still overrides these using the `testOpts` parameter....

type: chore

Create a Netlify build plugin that allows users to provision MongoDB atlas databases for a site. The user will need to supply their mongo API key from atlas. The first...

plugin idea
Blocked

When set in `netlify.toml`, the `plugins` array order is significant. For example, if two plugins are using the same event (for example `onPreBuild`), the plugin defined first in that array...

type: feature

We use snapshot tests in Netlify Build, which have some pros but also the following cons: - This is a rather new testing methodology that might be unfamiliar to many...

type: chore