mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
Merge branch 'master' into reproduce-against-master
This commit is contained in:
commit
037453d7e2
@ -5,7 +5,10 @@
|
||||
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
||||
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
|
||||
},
|
||||
"roots": ["packages"],
|
||||
"projects": [
|
||||
"<rootDir>/packages/*",
|
||||
"<rootDir>/examples/*"
|
||||
],
|
||||
"collectCoverage": false,
|
||||
"collectCoverageFrom": [
|
||||
"packages/**/*.{js,jsx}",
|
@ -14,6 +14,5 @@ script:
|
||||
- npm run lint
|
||||
- npm run test -- --coverage
|
||||
- npm run coverage
|
||||
- npm run test-examples
|
||||
git:
|
||||
depth: 1
|
||||
|
@ -76,10 +76,10 @@ If you follow that process, you can then link to the github repository in the is
|
||||
|
||||
We welcome your contributions. There are many ways you can help us. This is few of those ways:
|
||||
|
||||
* Fix typos and add more documentation.
|
||||
* Fix typos and add more [documentation](https://github.com/storybooks/storybook/labels/needs%20docs).
|
||||
* Try to fix some [bugs](https://github.com/storybooks/storybook/labels/bug).
|
||||
* Work on [enhancements](https://github.com/storybooks/storybook/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) and new [features](https://github.com/storybooks/storybook/issues?q=is%3Aissue+is%3Aopen+label%3Afeature).
|
||||
* Add more tests (specially for the UI).
|
||||
* Work on [API](https://github.com/storybooks/storybook/labels/enhancement%3A%20api), [Addons](https://github.com/storybooks/storybook/labels/enhancement%3A%20addons), [UI](https://github.com/storybooks/storybook/labels/enhancement%3A%20ui) or [Webpack](https://github.com/storybooks/storybook/labels/enhancement%3A%20webpack) use enhancements and new [features](https://github.com/storybooks/storybook/labels/feature%20request).
|
||||
* Add more [tests](https://codecov.io/gh/storybooks/storybook/tree/master/packages) (specially for the [UI](https://codecov.io/gh/storybooks/storybook/tree/master/packages/storybook-ui/src)).
|
||||
|
||||
Before you submit a new PR, make you to run `npm test`. Do not submit a PR if tests are failing. If you need any help, create an issue and ask.
|
||||
|
||||
|
@ -97,7 +97,7 @@ export default class Welcome extends React.Component {
|
||||
{' '}
|
||||
<a
|
||||
style={styles.link}
|
||||
href="https://getstorybook.io/docs/basics/writing-stories"
|
||||
href="https://storybooks.js.org/docs/react-storybook/basics/writing-stories"
|
||||
target="_blank"
|
||||
>
|
||||
Writing Stories
|
||||
|
@ -97,7 +97,7 @@ export default class Welcome extends React.Component {
|
||||
{' '}
|
||||
<a
|
||||
style={styles.link}
|
||||
href="https://getstorybook.io/docs/basics/writing-stories"
|
||||
href="https://storybooks.js.org/docs/react-storybook/basics/writing-stories"
|
||||
target="_blank"
|
||||
>
|
||||
Writing Stories
|
||||
|
@ -15,10 +15,10 @@
|
||||
"eslint": "^3.19.0",
|
||||
"eslint-config-airbnb-base": "^11.1.3",
|
||||
"eslint-plugin-import": "^2.2.0",
|
||||
"eslint-plugin-jest": "^19.0.1",
|
||||
"eslint-plugin-jest": "^20.0.0",
|
||||
"eslint-plugin-prettier": "^2.0.1",
|
||||
"jest": "^19.0.2",
|
||||
"jest-enzyme": "^3.0.1",
|
||||
"jest": "^20.0.0",
|
||||
"jest-enzyme": "^3.1.0",
|
||||
"lerna": "2.0.0-rc.4",
|
||||
"prettier": "^1.1.0",
|
||||
"react": "^15.5.4",
|
||||
@ -29,9 +29,8 @@
|
||||
"scripts": {
|
||||
"bootstrap": "lerna bootstrap",
|
||||
"lint": "eslint .",
|
||||
"test": "jest --config ./.jestrc",
|
||||
"test": "jest --config ./.jestrc.json",
|
||||
"test:watch": "npm test -- --watch",
|
||||
"test-examples": "CI=true lerna run test",
|
||||
"coverage": "codecov"
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,6 @@ const stylesheet = {
|
||||
width: 80,
|
||||
fontSize: 10,
|
||||
color: 'rgb(68, 68, 68)',
|
||||
textTransform: 'uppercase',
|
||||
fontWeight: 600,
|
||||
},
|
||||
};
|
||||
|
@ -97,7 +97,7 @@ export default class Welcome extends React.Component {
|
||||
{' '}
|
||||
<a
|
||||
style={styles.link}
|
||||
href="https://getstorybook.io/docs/basics/writing-stories"
|
||||
href="https://storybooks.js.org/docs/react-storybook/basics/writing-stories"
|
||||
target="_blank"
|
||||
>
|
||||
Writing Stories
|
||||
|
@ -1,6 +1,6 @@
|
||||
// you can use this file to add your custom webpack plugins, loaders and anything you like.
|
||||
// This is just the basic way to add addional webpack configurations.
|
||||
// For more information refer the docs: https://getstorybook.io/docs/configurations/custom-webpack-config
|
||||
// For more information refer the docs: https://storybooks.js.org/docs/react-storybook/configurations/custom-webpack-config
|
||||
|
||||
// IMPORTANT
|
||||
// When you add this file, we won't add the default configurations which is similar
|
||||
|
@ -97,7 +97,7 @@ export default class Welcome extends React.Component {
|
||||
{' '}
|
||||
<a
|
||||
style={styles.link}
|
||||
href="https://getstorybook.io/docs/basics/writing-stories"
|
||||
href="https://storybooks.js.org/docs/react-storybook/basics/writing-stories"
|
||||
target="_blank"
|
||||
>
|
||||
Writing Stories
|
||||
|
Loading…
x
Reference in New Issue
Block a user