Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aknuds1/html-to-react
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.5.0
Choose a base ref
...
head repository: aknuds1/html-to-react
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.1
Choose a head ref
  • 12 commits
  • 6 files changed
  • 3 contributors

Commits on Jul 1, 2022

  1. Update changelog

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Jul 1, 2022
    Copy the full SHA
    d571084 View commit details

Commits on Aug 19, 2022

  1. Upgrade dependencies

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Aug 19, 2022
    Copy the full SHA
    6ab7070 View commit details

Commits on Sep 10, 2022

  1. Upgrade dependencies

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Sep 10, 2022
    Copy the full SHA
    6ca695f View commit details

Commits on Nov 16, 2022

  1. Upgrade Node

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Nov 16, 2022
    Copy the full SHA
    dfb9f6f View commit details
  2. Upgrade deps

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Nov 16, 2022
    Copy the full SHA
    945ed72 View commit details

Commits on Feb 28, 2023

  1. Copy the full SHA
    3b75ed9 View commit details

Commits on Mar 13, 2023

  1. Copy the full SHA
    3e6aae7 View commit details

Commits on Mar 14, 2023

  1. Merge pull request #143 from tryggvigy/react-dependency

    Add react to dependencies instead of devDependencies
    aknuds1 authored Mar 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dceacca View commit details

Commits on Apr 7, 2023

  1. Upgrade GH Actions

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Apr 7, 2023
    Copy the full SHA
    5221c80 View commit details
  2. Merge pull request #147 from aknuds1/upgrade-actions

    Upgrade GitHub Actions
    aknuds1 authored Apr 7, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2869823 View commit details
  3. Merge pull request #145 from cloudfour/fix/custom-props

    Don't camelCase CSS custom properties
    aknuds1 authored Apr 7, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a195ea9 View commit details
  4. Bump version

    Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
    aknuds1 committed Apr 7, 2023
    Copy the full SHA
    268e5d5 View commit details
Showing with 609 additions and 374 deletions.
  1. +2 −2 .github/workflows/ci.yml
  2. +7 −0 CHANGELOG.md
  3. +8 −1 lib/utils.js
  4. +579 −367 package-lock.json
  5. +4 −4 package.json
  6. +9 −0 test/html-to-react-tests.js
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -11,9 +11,9 @@ jobs:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log

## Master/Unreleased
## [v1.5.1](https://github.com/aknuds1/html-to-react/tree/v1.5.1)

- Don't camelCase CSS custom properties [145](https://github.com/aknuds1/html-to-react/pull/145) ([tylersticka](https://github.com/tylersticka))

## [v1.5.0](https://github.com/aknuds1/html-to-react/tree/v1.5.0)

- Drop dependency on Ramda

## [v1.4.8](https://github.com/aknuds1/html-to-react/tree/v1.4.8)

9 changes: 8 additions & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
@@ -20,7 +20,14 @@ function createStyleJsonFromString(styleString) {
}

if (key != null && value != null && key.length > 0 && value.length > 0) {
jsonStyles[camelCase(key)] = value;
key = key.trim();

// Don't camelCase CSS custom properties
if (key.indexOf('--') !== 0) {
key = camelCase(key);
}

jsonStyles[key] = value;
}
}
return jsonStyles;
Loading