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

refactor: various improvements #1296

Merged
merged 2 commits into from
Jul 30, 2023

Commits on Jul 30, 2023

  1. refactor: various improvements

    - enable no-use-before-define eslint rule
    - shuffle code to conform to no-use-before-define eslint rule
    - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64')
    - convert some any types into useful ones
    - add type annotations where possible
    - remove unused @types/expect.js
    - install @types/semver and ts-node which were missing
    - repair and rewrite add-crowdin-contributors script
    - remove export keyword from variables which are never consumed in another file
    - remove unity indicator hack where linked issue was closed
    - remove module declaration for kebab-case which is unused
    - add missing state interface for certain components
    - remove default exports for files which already have a named export
    - export IRecipePreview so it can be used throughout codebase
    - remove unused removeCacheForCallWith method from CachedRequest.ts
    - cleanup unused colors and styles inside legacy theme
    mcmxcdev authored and vraravam committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    03c3e46 View commit details
    Browse the repository at this point in the history
  2. - improve ColorPickerInput

    - fix invalid DOM nesting with div inside p in EditSettingsForm
    - fix progressbarAccentColor color picker not updating input when using slider
    - install missing @types/react-color dependency
    mcmxcdev authored and vraravam committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    bdf30d2 View commit details
    Browse the repository at this point in the history