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

Bump the development-dependencies group with 7 updates #275

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 10, 2024

Bumps the development-dependencies group with 7 updates:

Package From To
@react-native-community/cli-platform-android 15.1.2 16.0.0
@react-native-community/cli-platform-ios 15.1.2 16.0.0
@trivago/prettier-plugin-sort-imports 4.3.0 5.2.0
eslint-import-resolver-typescript 3.6.3 3.7.0
eslint-plugin-react-hooks 5.0.0 5.1.0
eslint-plugin-testing-library 7.0.0 7.1.1
prettier 3.4.1 3.4.2

Updates @react-native-community/cli-platform-android from 15.1.2 to 16.0.0

Commits

Updates @react-native-community/cli-platform-ios from 15.1.2 to 16.0.0

Commits

Updates @trivago/prettier-plugin-sort-imports from 4.3.0 to 5.2.0

Release notes

Sourced from @​trivago/prettier-plugin-sort-imports's releases.

v5.2.0

What's Changed

Full Changelog: trivago/prettier-plugin-sort-imports@v5.1.0...v5.2.0

v5.1.0

What's Changed

Full Changelog: trivago/prettier-plugin-sort-imports@v5.0.1...v5.1.0

v5.0.1

Full Changelog: trivago/prettier-plugin-sort-imports@v5.0.0...v5.0.1

v5.0.0

What's Changed

New Contributors

Full Changelog: trivago/prettier-plugin-sort-imports@v4.3.0...v5.0.0

Changelog

Sourced from @​trivago/prettier-plugin-sort-imports's changelog.

5.2.0

v5.1.0

  • Fix svelte packages being required all the time #327 by @​byara

v5.0.1

  • Clean up unwanted packages and unpin dependencies #322 by @​byara

v5.0.0

New features

Commits

Updates eslint-import-resolver-typescript from 3.6.3 to 3.7.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Commits
  • c5da700 chore: release eslint-import-resolver-typescript (#327)
  • 93ea130 feat: implement import-x resolver interface v3 (#326)
  • e6256b7 chore(deps): update dependency simple-git-hooks to ^2.11.1 (#325)
  • da56f17 chore(deps): update dependency react to ^18.3.1 (#324)
  • 88a6d44 chore(deps): update node.js to v18.20.5 (#323)
  • bed664f chore(deps): update dependency @​changesets/cli to ^2.27.10 (#322)
  • 42e7cc3 chore(deps): update dependency @​types/node to ^18.19.63 (#320)
  • 13fa760 chore(deps): update dependency @​changesets/cli to ^2.27.9 (#319)
  • 5ee5879 fix(deps): update dependency debug to ^4.3.7 (#316)
  • f5b09f5 chore(deps): update dependency eslint to ^8.57.1 (#315)
  • Additional commits viewable in compare view

Updates eslint-plugin-react-hooks from 5.0.0 to 5.1.0

Commits

Updates eslint-plugin-testing-library from 7.0.0 to 7.1.1

Release notes

Sourced from eslint-plugin-testing-library's releases.

v7.1.1

7.1.1 (2024-12-06)

Bug Fixes

  • use valid config type for supporting both ESLint v8 and v9 (#976) (d8e44b2)

v7.1.0

7.1.0 (2024-12-04)

Features

Commits
  • d8e44b2 fix: use valid config type for supporting both ESLint v8 and v9 (#976)
  • 0b71f10 docs(README): add Svelte badge (#975)
  • 2aa578a docs: add nostrorom as a contributor for code (#974)
  • fc118c7 feat: add config for Svelte (#973)
  • 26d360e feat(docs): generate-all for svelte
  • ff432b0 feat(config): implement svelte config
  • 3738f37 fix(config): update deprecated config type
  • 496ecf6 build(deps-dev): bump @​types/node from 22.9.3 to 22.10.1 (#969)
  • 7d4207b build(deps-dev): bump @​types/node from 22.9.3 to 22.10.1
  • 6306b8d build(deps-dev): bump eslint-plugin-promise from 7.1.0 to 7.2.1 (#972)
  • Additional commits viewable in compare view

Updates prettier from 3.4.1 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the development-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@react-native-community/cli-platform-android](https://github.com/react-native-community/cli/tree/HEAD/packages/platform-android) | `15.1.2` | `16.0.0` |
| [@react-native-community/cli-platform-ios](https://github.com/react-native-community/cli/tree/HEAD/packages/cli-platform-ios) | `15.1.2` | `16.0.0` |
| [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) | `4.3.0` | `5.2.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.3` | `3.7.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.0.0` | `5.1.0` |
| [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) | `7.0.0` | `7.1.1` |
| [prettier](https://github.com/prettier/prettier) | `3.4.1` | `3.4.2` |


Updates `@react-native-community/cli-platform-android` from 15.1.2 to 16.0.0
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Commits](https://github.com/react-native-community/cli/commits/v16.0.0/packages/platform-android)

Updates `@react-native-community/cli-platform-ios` from 15.1.2 to 16.0.0
- [Release notes](https://github.com/react-native-community/cli/releases)
- [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios/CHANGELOG.md)
- [Commits](https://github.com/react-native-community/cli/commits/v16.0.0/packages/cli-platform-ios)

Updates `@trivago/prettier-plugin-sort-imports` from 4.3.0 to 5.2.0
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](trivago/prettier-plugin-sort-imports@v4.3.0...v5.2.0)

Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.3...v3.7.0)

Updates `eslint-plugin-react-hooks` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-testing-library` from 7.0.0 to 7.1.1
- [Release notes](https://github.com/testing-library/eslint-plugin-testing-library/releases)
- [Changelog](https://github.com/testing-library/eslint-plugin-testing-library/blob/main/.releaserc.json)
- [Commits](testing-library/eslint-plugin-testing-library@v7.0.0...v7.1.1)

Updates `prettier` from 3.4.1 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.1...3.4.2)

---
updated-dependencies:
- dependency-name: "@react-native-community/cli-platform-android"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@react-native-community/cli-platform-ios"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@trivago/prettier-plugin-sort-imports"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-testing-library
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 10, 2024
Copy link

☂️ Code Coverage

% Stmts% Branch% Funcs% Lines
6.34 🔴0.09 🔴0.24 🔴6.58 🔴
Click to expand
File% Stmts% Branch% Funcs% Lines
src
storage.ts11.11 🔴0 🔴0 🔴11.11 🔴
store.ts70.58 🟡100 🟢40 🔴75 🟡
translations.ts100 🟢50 🔴100 🟢100 🟢
constants.ts100 🟢100 🟢100 🟢100 🟢
style.tsx31.81 🔴0 🔴0 🔴31.81 🔴
InnerApp.tsx5.43 🔴0 🔴0 🔴5.61 🔴
App.tsx100 🟢100 🟢100 🟢100 🟢
src/components
StorageMigrator.tsx9.09 🔴0 🔴0 🔴9.09 🔴
BaseModal.tsx14.28 🔴0 🔴0 🔴14.28 🔴
ReleaseChangelog.tsx40 🔴0 🔴0 🔴40 🔴
ShowTimeRange.tsx7.69 🔴0 🔴0 🔴9.09 🔴
OpenDTUValue.tsx18.18 🔴0 🔴0 🔴18.18 🔴
DeviceOfflineWrapper.tsx8.33 🔴0 🔴0 🔴8.33 🔴
DeviceStatus.tsx5.88 🔴0 🔴0 🔴7.69 🔴
StatusWidget.tsx25 🔴0 🔴0 🔴25 🔴
ImportantStatusValues.tsx14.28 🔴100 🟢0 🔴20 🔴
src/slices
opendtu.ts5.05 🔴0 🔴0 🔴5.05 🔴
settings.ts5.2 🔴0 🔴0 🔴5.2 🔴
app.ts31.25 🔴0 🔴0 🔴31.25 🔴
database.ts25 🔴0 🔴0 🔴28.57 🔴
github.ts30.76 🔴100 🟢0 🔴30.76 🔴
src/types
settings.ts100 🟢100 🟢100 🟢100 🟢
src/utils
log.ts55.55 🟠25 🔴0 🔴62.5 🟠
ago.ts11.11 🔴0 🔴0 🔴12.5 🔴
capitalize.ts50 🔴100 🟢0 🔴50 🔴
formatBytes.ts33.33 🔴0 🔴0 🔴40 🔴
percentage.ts25 🔴0 🔴0 🔴25 🔴
formatVersion.ts20 🔴100 🟢0 🔴20 🔴
time.ts0 🔴100 🟢0 🔴0 🔴
inverter.ts12.5 🔴0 🔴0 🔴12.5 🔴
isIP.ts25 🔴0 🔴0 🔴33.33 🔴
validation.ts12.5 🔴0 🔴0 🔴12.5 🔴
src/types/opendtu
state.ts100 🟢100 🟢100 🟢100 🟢
control.ts100 🟢100 🟢100 🟢100 🟢
settings.ts100 🟢100 🟢100 🟢100 🟢
src/hooks
useAppLanguage.ts33.33 🔴0 🔴0 🔴50 🔴
useHasLiveData.ts10.34 🔴0 🔴0 🔴10.34 🔴
useOrientation.ts14.28 🔴0 🔴0 🔴14.28 🔴
useEnhancedLog.ts16.66 🔴0 🔴0 🔴20 🔴
useLivedata.ts12.5 🔴0 🔴0 🔴12.5 🔴
useHasNewAppVersion.ts9.09 🔴0 🔴0 🔴11.11 🔴
useDeviceIndex.ts33.33 🔴100 🟢0 🔴50 🔴
useDtuState.ts25 🔴0 🔴0 🔴25 🔴
useHasAuthConfigured.tsx33.33 🔴0 🔴0 🔴33.33 🔴
useHasNewOpenDtuVersion.ts7.69 🔴0 🔴0 🔴9.09 🔴
useInverterDevice.ts20 🔴0 🔴0 🔴20 🔴
useEventLog.ts20 🔴0 🔴0 🔴20 🔴
useFirmwareDependantFeature.ts18.18 🔴0 🔴0 🔴20 🔴
useGridProfile.ts20 🔴0 🔴0 🔴20 🔴
useInverterLimits.ts20 🔴0 🔴0 🔴20 🔴
useInverterPowerData.ts20 🔴0 🔴0 🔴20 🔴
useMemoWithInterval.ts8.33 🔴0 🔴0 🔴10 🔴
useIsConnected.ts25 🔴0 🔴0 🔴25 🔴
useTriedToConnect.ts25 🔴0 🔴0 🔴25 🔴
useRequireMultiplePresses.ts7.69 🔴0 🔴0 🔴7.69 🔴
useSettings.ts33.33 🔴100 🟢0 🔴50 🔴
useDtuSettings.ts20 🔴0 🔴0 🔴20 🔴
src/firmware
index.ts13.33 🔴0 🔴0 🔴13.33 🔴
src/api
opendtuapi.ts0.16 🔴0 🔴0 🔴0.16 🔴
ApiHandler.tsx4.25 🔴0 🔴0 🔴4.34 🔴
src/components/styled
StyledSurface.tsx33.33 🔴0 🔴0 🔴33.33 🔴
StyledListItem.tsx50 🔴0 🔴0 🔴50 🔴
StyledTextInput.tsx100 🟢100 🟢100 🟢100 🟢
SettingsSurface.tsx44.44 🔴0 🔴0 🔴44.44 🔴
src/components/Charts
UnifiedLineChart.tsx3.09 🔴0 🔴0 🔴3.19 🔴
AcPowerChart.tsx14.28 🔴0 🔴0 🔴14.28 🔴
DcPowerChart.tsx14.28 🔴0 🔴0 🔴14.28 🔴
DcVoltageChart.tsx14.28 🔴0 🔴0 🔴14.28 🔴
ImportantCharts.tsx3.12 🔴0 🔴0 🔴3.44 🔴
src/database
prometheus.ts1.33 🔴0 🔴0 🔴1.42 🔴
index.tsx9.19 🔴0 🔴0 🔴9.63 🔴
src/github
index.tsx55.55 🟠100 🟢0 🔴71.42 🟡
FetchHandler.tsx4.54 🔴0 🔴0 🔴4.87 🔴
src/components/modals
AppChangelogModal.tsx4.76 🔴0 🔴0 🔴4.87 🔴
AppOfflineModal.tsx25 🔴100 🟢0 🔴25 🔴
EnableAppUpdatesModal.tsx7.69 🔴100 🟢0 🔴7.69 🔴
EnableFetchOpenDtuUpdatesModal.tsx7.69 🔴100 🟢0 🔴7.69 🔴
LogExtensionModal.tsx7.69 🔴0 🔴0 🔴9.09 🔴
LogLevelModal.tsx16.66 🔴100 🟢0 🔴16.66 🔴
ChangeCustomNameModal.tsx4.16 🔴0 🔴0 🔴4.34 🔴
ChangeOpendtuCredentialsModal.tsx4.25 🔴0 🔴0 🔴4.44 🔴
ChangeServerUrlModal.tsx5.26 🔴0 🔴0 🔴5.88 🔴
ConfirmDeleteDeviceModal.tsx7.14 🔴100 🟢0 🔴7.14 🔴
ChangeGraphRefreshIntervalModal.tsx9.09 🔴0 🔴0 🔴10 🔴
TimeRangeLastNSecondsModal.tsx11.76 🔴0 🔴0 🔴12.5 🔴
AddDatabaseModal.tsx4.34 🔴0 🔴0 🔴4.34 🔴
ManageDatabaseModal.tsx2.56 🔴0 🔴0 🔴2.7 🔴
GenericRefreshModal.tsx11.11 🔴100 🟢0 🔴11.11 🔴
InstallAssetModal.tsx2.4 🔴0 🔴0 🔴2.4 🔴
SelectFirmwareModal.tsx3.84 🔴0 🔴0 🔴4.16 🔴
LimitConfigModal.tsx5 🔴0 🔴0 🔴5.08 🔴
PowerConfigModal.tsx8.57 🔴0 🔴0 🔴8.82 🔴
ChangeLanguageModal.tsx9.52 🔴0 🔴0 🔴9.52 🔴
ChangeThemeModal.tsx10.52 🔴0 🔴0 🔴11.11 🔴
ChangeEnumValueModal.tsx3.44 🔴0 🔴0 🔴3.44 🔴
ChangeTextValueModal.tsx4.34 🔴0 🔴0 🔴4.34 🔴
ChangeBooleanValueModal.tsx3.33 🔴0 🔴0 🔴3.33 🔴
NTPChangeTimezoneModal.tsx3.03 🔴0 🔴0 🔴3.17 🔴
src/components/logging
LogLine.tsx40 🔴100 🟢0 🔴40 🔴
src/views/navigation/screens/DebugGroup
AppLogScreen.tsx7.69 🔴0 🔴0 🔴7.69 🔴
DebugColorsScreen.tsx20 🔴0 🔴0 🔴20 🔴
DebugScreen.tsx2.38 🔴0 🔴0 🔴2.38 🔴
src/components/devices
DeviceListItem.tsx4.76 🔴0 🔴0 🔴5.55 🔴
DeviceList.tsx20 🔴100 🟢0 🔴25 🔴
MDNSScanItem.tsx5 🔴0 🔴0 🔴5.12 🔴
MDNSScan.tsx5.12 🔴0 🔴0 🔴5.4 🔴
src/views/navigation/screens/DeviceGroup
DeviceListScreen.tsx7.14 🔴0 🔴0 🔴7.14 🔴
DeviceSettingsScreen.tsx1.4 🔴0 🔴0 🔴1.58 🔴
src/views/navigation/screens/GraphsGroup
ConfigureGraphsScreen.tsx1.16 🔴0 🔴0 🔴1.29 🔴
ManageDatabasesScreen.tsx5.55 🔴0 🔴0 🔴5.88 🔴
SelectDatabaseScreen.tsx4 🔴0 🔴0 🔴4.16 🔴
src/views/navigation/screens/InformationGroup
AboutAppScreen.tsx3.33 🔴0 🔴0 🔴3.33 🔴
FirmwareListScreen.tsx2.7 🔴0 🔴0 🔴2.85 🔴
LicensesScreen.tsx10 🔴0 🔴0 🔴10 🔴
MqttInformationScreen.tsx5.88 🔴0 🔴0 🔴6.25 🔴
NetworkInformationScreen.tsx5 🔴0 🔴0 🔴5.55 🔴
NtpInformationScreen.tsx11.11 🔴0 🔴0 🔴12.5 🔴
SystemInformationScreen.tsx1.81 🔴0 🔴0 🔴1.96 🔴
src/components/firmware
FirmwareListItem.tsx7.4 🔴0 🔴0 🔴7.69 🔴
src/views/navigation/screens/InverterGroup
InverterDataScreen.tsx8.69 🔴0 🔴0 🔴9.52 🔴
InverterDeviceInfoScreen.tsx5.55 🔴0 🔴0 🔴5.88 🔴
InverterEventLogScreen.tsx7.69 🔴0 🔴0 🔴8 🔴
InverterGridProfileScreen.tsx5.71 🔴0 🔴0 🔴6.06 🔴
InverterInfoScreen.tsx3.75 🔴0 🔴0 🔴3.84 🔴
src/views/navigation/tabs
GraphTab.tsx33.33 🔴100 🟢0 🔴33.33 🔴
InverterListTab.tsx33.33 🔴100 🟢0 🔴33.33 🔴
LivedataTab.tsx33.33 🔴100 🟢0 🔴33.33 🔴
MainSettingsTab.tsx1.13 🔴0 🔴0 🔴1.26 🔴
src/components/inverters
InverterListItem.tsx2.27 🔴0 🔴0 🔴2.43 🔴
InverterList.tsx6.66 🔴0 🔴0 🔴7.14 🔴
src/views/navigation
NavigationTabs.tsx33.33 🔴0 🔴0 🔴42.85 🔴
NavigationStack.tsx40 🔴0 🔴0 🔴40 🔴
src/views/navigation/screens
MainScreen.tsx15.38 🔴0 🔴0 🔴15.38 🔴
src/views/navigation/screens/SettingsGroup
DtuSettingsScreen.tsx2.41 🔴0 🔴0 🔴2.43 🔴
NetworkSettingsScreen.tsx0.79 🔴0 🔴0 🔴0.8 🔴
NTPSettingsScreen.tsx2.24 🔴0 🔴0 🔴2.27 🔴
src/components/settings
NTPCurrentTimeComponents.tsx5.88 🔴0 🔴0 🔴5.88 🔴
src/views/navigation/screens/SetupGroup
SetupAddOpenDTUScreen.tsx2.81 🔴0 🔴0 🔴2.89 🔴
SetupAuthenticateOpenDTUInstanceScreen.tsx3.07 🔴0 🔴0 🔴3.12 🔴
SetupOpenDTUCompleteScreen.tsx8.33 🔴0 🔴0 🔴9.09 🔴

@CommanderRedYT CommanderRedYT merged commit b1a5c88 into develop Dec 10, 2024
6 checks passed
@CommanderRedYT CommanderRedYT deleted the dependabot/npm_and_yarn/development-dependencies-b8e7acdb9e branch December 10, 2024 10:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant