@memlab/e2e 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memlab/e2e",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "license": "MIT",
5
5
  "description": "memlab browser E2E interaction libraries",
6
6
  "author": "Liang Gong <lgong@meta.com>",
@@ -25,8 +25,8 @@
25
25
  "@babel/parser": "^7.16.4",
26
26
  "@babel/template": "^7.16.0",
27
27
  "@babel/traverse": "^7.16.3",
28
- "@memlab/core": "^2.0.0",
29
- "@memlab/lens": "^2.0.0",
28
+ "@memlab/core": "^2.0.2",
29
+ "@memlab/lens": "^2.0.2",
30
30
  "ansi": "^0.3.1",
31
31
  "babar": "^0.2.0",
32
32
  "chalk": "^4.0.0",
@@ -11,12 +11,10 @@
11
11
  import Layout from '../components/layout.jsx';
12
12
  import React from 'react';
13
13
 
14
- function MyApp({Component, pageProps}) {
14
+ export default function MyApp({Component, pageProps}) {
15
15
  return (
16
16
  <Layout>
17
17
  <Component {...pageProps} />
18
18
  </Layout>
19
19
  );
20
20
  }
21
-
22
- export default MyApp;
@@ -3,7 +3,7 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "dependencies": {
6
- "eslint": "^8.8.0",
6
+ "eslint": "^9.39.1",
7
7
  "react": "^17.0.2",
8
8
  "react-dom": "^17.0.2",
9
9
  "react-scripts": "5.0.0",
@@ -28,7 +28,7 @@ function getClosure(i) {
28
28
  };
29
29
  }
30
30
 
31
- function App() {
31
+ export default function App() {
32
32
  return (
33
33
  <div>
34
34
  {[1, 2, 3, 4, 5, 6, 7, 8].map(i => {
@@ -44,5 +44,3 @@ function App() {
44
44
  </div>
45
45
  );
46
46
  }
47
-
48
- export default App;