diff --git a/.github/stale.yml b/.github/stale.yml index 5935decc230..29f1395531b 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -4,11 +4,12 @@ daysUntilStale: 45 daysUntilClose: 15 # Issues with these labels will never be considered stale exemptLabels: - - bug - - 'help wanted' + - todo + - ready - 'in progress' - 'do not merge' - 'needs review' + - 'high priority' # Label to use when marking an issue as stale staleLabel: inactive @@ -16,11 +17,12 @@ staleLabel: inactive markComment: > Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue - the discussion. We do try to do some housekeeping every once in a while so - inactive issues will get closed after 60 days. Thanks! + the discussion. Unfortunately, we don't have time to get to every issue. We + are always open to contributions so please send us a pull request if you would + like to help. Inactive issues will be closed after 60 days. Thanks! # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > - Hey there, it's me again! I am going to help our maintainers close this issue - so they can focus on development efforts instead. If the issue mentioned is + Hey there, it's me again! I am going close this issue to help our maintainers + focus on the current development roadmap instead. If the issue mentioned is still a concern, please open a new ticket and mention this old one. Cheers and thanks for using Storybook! diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 00000000000..3d2fd195c82 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,6 @@ +[build] + publish = "netlify-build" + command = "bash scripts/netlify-build.sh" +[build.environment] + NODE_VERSION = "8" + YARN_VERSION = "1.3.2" diff --git a/package.json b/package.json index 7d8af6d1622..9bccbb1dd76 100644 --- a/package.json +++ b/package.json @@ -79,6 +79,7 @@ "nodemon": "^1.12.1", "npmlog": "^4.1.2", "prettier": "^1.8.2", + "process-nextick-args": "^1.0.7", "puppeteer": "^0.13.0", "raf": "^3.4.0", "react": "^16.1.0", diff --git a/scripts/netlify-build.sh b/scripts/netlify-build.sh new file mode 100644 index 00000000000..37bd9661c37 --- /dev/null +++ b/scripts/netlify-build.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +mkdir netlify-build + +yarn +yarn add gauge --ignore-workspace-root-check # netlify quirk +yarn bootstrap --core + +echo "netlify-build docs" +pushd docs +yarn install +popd +yarn docs:build +mv docs/public/* netlify-build/ + +echo "netlify-build React examples" +pushd examples/cra-kitchen-sink +yarn add tapable # netlify quirk +yarn build-storybook +mv storybook-static ../../netlify-build/cra-kitchen-sink +popd + +echo "netlify-build Vue examples" +pushd examples/vue-kitchen-sink +yarn build-storybook +mv storybook-static ../../netlify-build/vue-kitchen-sink +popd + diff --git a/yarn.lock b/yarn.lock index cdbabe8f382..264f4e78f15 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9001,7 +9001,7 @@ private@^0.1.6, private@^0.1.7, private@~0.1.5: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" -process-nextick-args@~1.0.6: +process-nextick-args@^1.0.7, process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"