piral-redux 1.8.0-beta.7667 → 1.8.0-beta.7668

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": "piral-redux",
3
- "version": "1.8.0-beta.7667",
3
+ "version": "1.8.0-beta.7668",
4
4
  "description": "Plugin for the integration of Redux in a Piral instance.",
5
5
  "keywords": [
6
6
  "piral",
@@ -58,8 +58,8 @@
58
58
  "@types/react": "^18.0.0",
59
59
  "@types/react-redux": "^5.0.19",
60
60
  "@types/redux": "^3.6.0",
61
- "piral-core": "1.8.0-beta.7667",
61
+ "piral-core": "1.8.0-beta.7668",
62
62
  "react": "^18.0.0"
63
63
  },
64
- "gitHead": "658a8503fdf62c503e4d7cbe86cb3f6da0b2d76d"
64
+ "gitHead": "1b32d52d4d57363bed8af9105dd41a0635075721"
65
65
  }
@@ -13,8 +13,8 @@ function createMockContainer() {
13
13
  on: vitest.fn(),
14
14
  off: vitest.fn(),
15
15
  emit: vitest.fn(),
16
- includeProvider() { },
17
- defineActions() { },
16
+ includeProvider() {},
17
+ defineActions() {},
18
18
  state,
19
19
  readState(read) {
20
20
  return read(state.getState());
@@ -37,6 +37,6 @@ describe('Piral-Redux create module', () => {
37
37
  const api = apiCreator(undefined, {
38
38
  name: 'test',
39
39
  });
40
- api.createReduxStore(() => { })(MyComponent);
40
+ api.createReduxStore(() => {})(MyComponent);
41
41
  });
42
42
  });