Skip to content

Commit

Permalink
Merge pull request #181 from kirovboris/npm_errors
Browse files Browse the repository at this point in the history
fix: npm install errors with npm7
  • Loading branch information
kirovboris authored Mar 17, 2021
2 parents 0214b75 + 8799941 commit 6c7e1d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "testcafe-react-selectors",
"version": "4.1.4",
"version": "4.1.5",
"description": "ReactJS selectors for TestCafe",
"repository": "https://github.com/DevExpress/testcafe-react-selectors",
"main": "lib/index",
Expand Down Expand Up @@ -28,7 +28,7 @@
"gulp-eslint": "^6.0.0",
"gulp-mustache": "^3.0.1",
"gulp-rename": "^1.2.2",
"next": "9.3.2",
"next": "10.0.9",
"publish-please": "^5.5.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
Expand Down
6 changes: 5 additions & 1 deletion test/data/src/server-render/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Label extends React.Component {

this.state = {
text: 'Label Text...'
}
};
}

render () {
Expand All @@ -17,3 +17,7 @@ class Label extends React.Component {
const App = () => <div><Label/></div>;

export default App;

export async function getServerSideProps () {
return { props: { } };
}

0 comments on commit 6c7e1d1

Please sign in to comment.