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: jridgewell/gen-mapping
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.3
Choose a base ref
...
head repository: jridgewell/gen-mapping
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.4
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Feb 24, 2024

  1. Upgrade mocha to run TS

    jridgewell committed Feb 24, 2024
    Copy the full SHA
    7ad940a View commit details
  2. Improve DCE by code moving out of static block

    jridgewell committed Feb 24, 2024
    Copy the full SHA
    01ec8c9 View commit details
  3. 0.3.4

    jridgewell committed Feb 24, 2024
    Copy the full SHA
    b9d92dc View commit details
Showing with 2,248 additions and 3,703 deletions.
  1. +2 −2 .github/workflows/test.yml
  2. +3 −2 .mocharc.js
  3. +1,954 −3,408 package-lock.json
  4. +5 −6 package.json
  5. +254 −255 src/gen-mapping.ts
  6. +30 −30 test/{gen-mapping.test.js → gen-mapping.test.ts}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@ jobs:

strategy:
matrix:
latest-node-version: [16.x]
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x]
latest-node-version: [20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v1
5 changes: 3 additions & 2 deletions .mocharc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
spec: ['test/**/*.test.js'],
}
spec: ['test/**/*.test.ts'],
'node-option': ['import=tsx'],
};
Loading