From 5b66298577f266d14e08a9e5984177dbac5a4d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20M=C3=BCller?= Date: Tue, 9 Jan 2018 09:30:10 +0100 Subject: [PATCH] Added Netlify config file The Netlify build configuration currently only resides in their admin panel. This configuration file should hopefully override those settings to allow outside contributors to make refactoring changes Refs https://github.com/mochajs/mocha/pull/3195 --- netlify.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000000..bef8d91e1d --- /dev/null +++ b/netlify.toml @@ -0,0 +1,13 @@ +# Netlify deploy configuration +# See https://www.netlify.com/docs/continuous-deployment/#deploy-contexts + +# Global settings applied to the whole site. +# +# “publish” is the directory to publish (relative to root of your repo), +# “command” is your build command, +# “base” is directory to change to before starting build. if you set base: +# that is where we will look for package.json/.nvmrc/etc not repo root! + +[build] + publish = "docs/_dist/" + command = "npm start buildDocs"