BREAKING_CHANGE * initial structure for components rewrite * WIP Input * WIP Label * add button props * add label class name * fix dependency * new examples buttonModules & buttonEmotion + refac * clean up to merge initial code into base branch * remove unused file * extend default theme -- add new colors * chore: prettier formatting * chore: try to exclude feature branch PRs * chore: suggest toml syntax highlighting extension * chore: capture yarn.lock changes * docs: condense readme * chore: update deploy preview to build docz component library * chore: Add component library to deploy preview index * chore: fix invalid tailwindcss config * chore: try tweaking toml to kickstart preview * chore: revert * chore: fix formatting of file index * chore: don't waste precious build minutes on a broken build * chore: chmod build-and-deploy.sh * ci: nuke circleci until we need the workflows on master * debug lerna commands * remove redundant yarn commands * try nohoist * revert tests * attempt to resolve import issue * force update yarn lock * try new workarounds for yarn version * another workaround * shift vtk to extension repo deps * catch vtk addition * update lock * Try older yarn version * try again * debugging * fix: yarn doctor warnings * learn some life lessons from the yarn docs * clean up netlify.toml * clean up netlify.toml * yarn package doctor react-dom * yarn doctor: missing peer dep * yarn doctor, satisfying webpack loader peer deps * fix docz base path for deploy-preview * yarn docter: replaced prePublishOnly usage * More yarn doctoring * ignore .yarn directory * fix last yarn doctor warning * updated yarn lock Co-authored-by: Rodrigo Antinarelli <rodrigoantinarelli@gmail.com>
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
# Netlify Config
|
|
#
|
|
# TOML Reference:
|
|
# https://www.netlify.com/docs/netlify-toml-reference/
|
|
#
|
|
# We use Netlify for deploy previews and for publishing docs (gh-pages branch).
|
|
# https://viewer.ohif.org is created using a different process that is
|
|
# managed by CircleCI and deployed to our Google Hosting
|
|
#
|
|
|
|
# NODE_VERSION in root `.nvmrc` takes priority
|
|
# YARN_FLAGS: https://www.netlify.com/docs/build-gotchas/#yarn
|
|
[build.environment]
|
|
# If 'production', `yarn install` does not install devDependencies
|
|
NODE_ENV = "development"
|
|
NODE_VERSION = "10.16.0"
|
|
YARN_VERSION = "1.18.0" # 1.22.0
|
|
RUBY_VERSION = "2.6.2"
|
|
YARN_FLAGS = "--no-ignore-optional --pure-lockfile"
|
|
|
|
# Production context: all deploys from the Production branch set in your site's
|
|
# deploy contexts will inherit these settings.
|
|
[context.production]
|
|
ignore = "exit 0" # Never build production; We'll let our CI do that
|
|
|
|
# Deploy Preview context: all deploys generated from a pull/merge request will
|
|
# inherit these settings.
|
|
[context.deploy-preview]
|
|
base = ""
|
|
publish = ".netlify/www/"
|
|
command = ".netlify/build-deploy-preview.sh"
|
|
|
|
[[headers]]
|
|
# Define which paths this specific [[headers]] block will cover.
|
|
for = "/*"
|
|
|
|
[headers.values]
|
|
X-Frame-Options = "DENY"
|
|
X-XSS-Protection = "1; mode=block"
|
|
|
|
# Multi-key header rules are expressed with multi-line strings.
|
|
cache-control = '''
|
|
max-age=0,
|
|
no-cache,
|
|
no-store,
|
|
must-revalidate'''
|