Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add missing packages to harvest #2683

Merged
merged 2 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/cozy-harvest-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"react-final-form": "^3.7.0",
"react-json-print": "^0.1.3",
"react-markdown": "^4.2.2",
"react-redux":"7.2.2",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^3.3.2"
},
Expand Down
8 changes: 5 additions & 3 deletions packages/cozy-harvest-lib/test/AppLike.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import React from 'react'
import { Provider as ReduxProvider } from 'react-redux'

import CozyClient, { CozyProvider as CozyClientProvider } from 'cozy-client'
import {
CozyProvider as CozyClientProvider,
createMockClient
} from 'cozy-client'
import { useCozyDialog } from 'cozy-ui/transpiled/react/CozyDialogs'
import AlertProvider from 'cozy-ui/transpiled/react/providers/Alert'
import { BreakpointsProvider } from 'cozy-ui/transpiled/react/providers/Breakpoints'
Expand All @@ -11,8 +14,7 @@ import I18n from 'cozy-ui/transpiled/react/providers/I18n'
import DialogContext from '../src/components/DialogContext'
import enLocale from '../src/locales/en.json'

const defaultClient = new CozyClient()
defaultClient.ensureStore()
const defaultClient = createMockClient({})

const AppLike = ({
client: clientOption,
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23254,7 +23254,7 @@ react-popper@^2.2.3:
react-fast-compare "^3.0.1"
warning "^4.0.2"

react-redux@^7.0.3, react-redux@^7.1.1, react-redux@^7.2.0:
react-redux@7.2.2, react-redux@^7.0.3, react-redux@^7.1.1, react-redux@^7.2.0:
version "7.2.2"
resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.2.tgz#03862e803a30b6b9ef8582dadcc810947f74b736"
integrity sha512-8+CQ1EvIVFkYL/vu6Olo7JFLWop1qRUeb46sGtIMDCSpgwPQq8fPLpirIB0iTqFe9XYEFPHssdX8/UwN6pAkEA==
Expand Down
Loading