Skip to content

Commit

Permalink
fix some issues in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 2, 2018
1 parent 3464f1b commit 4ea2ba5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/src/modules/utils/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export function pageToTitle(page) {

export function getDependencies(raw) {
const deps = {
'@material-ui/core': 'latest',
'react-dom': 'latest',
react: 'latest',
};
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/customization/overrides/ClassesShorthand.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ const StyledButton = withStyles({
})(Button);

export default function ClassesShorthand() {
return <StyledButton>Classes Shorthand</StyledButton>
return <StyledButton>Classes Shorthand</StyledButton>;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"size:why": "size-limit --why packages/material-ui/build/index.js",
"size:overhead:why": "size-limit --why ./test/size/overhead.js",
"spellcheck": "eslint . --config .eslintrc.spellcheck.js && echo \"eslint: no lint errors\"",
"test": "yarn lint && yarn typescript && yarn test:unit",
"test": "yarn lint && yarn typescript && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha packages/material-ui/test/**/*.test.js packages/material-ui/src/{,**/}*.test.js docs/src/**/*.test.js",
"test:watch": "yarn test:unit --watch",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha packages/material-ui/test/**/*.test.js packages/material-ui/src/{,**/}*.test.js && nyc report -r lcovonly",
Expand Down
2 changes: 1 addition & 1 deletion pages/lab/api/toggle-button-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ title: ToggleButtonGroup API
<p class="description">The API documentation of the ToggleButtonGroup React component.</p>

```js
import ToggleButtonGroup from '@material-ui/lab/ToggleButton/ToggleButtonGroup';
import ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup';
```


Expand Down

0 comments on commit 4ea2ba5

Please sign in to comment.