build
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
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...
**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...
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...
This is due to a bug in AVA. I've reported it here: https://github.com/avajs/ava/issues/2311
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()`...
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`...
**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....
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...
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...
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...