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: syntax-tree/xast-util-from-xml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.1
Choose a base ref
...
head repository: syntax-tree/xast-util-from-xml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.2
Choose a head ref
  • 16 commits
  • 8 files changed
  • 2 contributors

Commits on Jun 1, 2021

  1. Verified

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

Commits on Jul 24, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    127ca0d View commit details
  2. Refactor code-style

    wooorm committed Jul 24, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    84b8134 View commit details
  3. Add strict to tsconfig.json

    wooorm committed Jul 24, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    1ee98ae View commit details
  4. Update xo

    wooorm committed Jul 24, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    c6cfaae View commit details

Commits on Mar 4, 2022

  1. Add ignore-scripts to .npmrc

    Closes GH-2.
    
    Reviewed-by: Titus Wormer <[email protected]>
    ChristianMurphy authored Mar 4, 2022

    Verified

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

Commits on May 28, 2022

  1. Update dev-dependencies

    wooorm committed May 28, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    6f7161f View commit details
  2. Add improved docs

    wooorm committed May 28, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    c95da95 View commit details

Commits on Jan 17, 2023

  1. Update dev-dependencies

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    731eb6e View commit details
  2. Update Actions

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    3621fae View commit details
  3. Update tsconfig.json

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    888856f View commit details
  4. Add more JSDocs

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    72d8c67 View commit details
  5. Use Node test runner

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    12d74f9 View commit details
  6. Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    735093b View commit details
  7. Add improved docs

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    1d7671c View commit details
  8. 2.0.2

    wooorm committed Jan 17, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    2c32bd5 View commit details
Showing with 395 additions and 197 deletions.
  1. +1 −1 .github/workflows/bb.yml
  2. +4 −4 .github/workflows/main.yml
  3. +1 −0 .npmrc
  4. +194 −71 lib/index.js
  5. +18 −13 package.json
  6. +90 −24 readme.md
  7. +77 −76 test/index.js
  8. +10 −8 tsconfig.json
2 changes: 1 addition & 1 deletion .github/workflows/bb.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: bb
on:
issues:
types: [opened, reopened, edited, closed, labeled, unlabeled]
pull_request:
pull_request_target:
types: [opened, reopened, edited, closed, labeled, unlabeled]
jobs:
main:
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -7,15 +7,15 @@ jobs:
name: ${{matrix.node}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dcodeIO/setup-node-nvm@master
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
strategy:
matrix:
node:
- lts/erbium
- lts/gallium
- node
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package-lock=false
ignore-scripts=true
Loading