Merge branch 'master' into fix/react-native-drawer-width

This commit is contained in:
Daniel Duan 2017-11-13 23:18:44 -05:00 committed by GitHub
commit 7ab0c2f0ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 44 additions and 7 deletions

14
.github/stale.yml vendored
View File

@ -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!

6
netlify.toml Normal file
View File

@ -0,0 +1,6 @@
[build]
publish = "netlify-build"
command = "bash scripts/netlify-build.sh"
[build.environment]
NODE_VERSION = "8"
YARN_VERSION = "1.3.2"

View File

@ -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",

28
scripts/netlify-build.sh Normal file
View File

@ -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

View File

@ -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"